3 # startx configuration file.
5 # Copyright (C) 2011-2013 Simon Ruderich
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 # Some systems don't set the LANG environment variable when starting xinitrc,
22 # this causes problems for rxvt-unicode-256color which fails to display UTF-8
23 # characters correctly when LANG is missing and for notify.py which also needs
24 # LANG set (for Python's decode() function). Therefore load my general shell
25 # environment which also includes $LANG.
26 if test -f "$HOME/.shell/env"; then
27 # Debug function used in ~/.shell/env.
38 type "$1" >/dev/null 2>&1
40 # Save PID of the most recently started background process. Used to terminate
41 # them when logging out to prevent unused background processes. On some
42 # systems this is only necessary for some programs (like ssh-agent), haven't
43 # yet figured out why.
44 save_background_pid() {
45 background_pids="$background_pids $!"
50 # Options, can be modified in ~/.xinitrc.local. To disable a boolean option
51 # set it to an empty value.
53 # Default to use a background image.
56 # Load settings for the local system.
57 if test -f "$HOME/.xinitrc.local"; then
58 . "$HOME/.xinitrc.local"
62 # Start ssh-agent if we have private keys, thanks to
63 # http://code.haskell.org/XMonadContrib/scripts/xinitrc (read on 2011-06-19).
64 if test -x /usr/bin/ssh-agent && test -f "$HOME/.ssh/id_rsa"; then
65 # -s to force bourne shell output. This file is a bourne shell script even
66 # if the environment might suggest otherwise.
67 eval `/usr/bin/ssh-agent -s` >/dev/null
70 # Use a black background for the root window.
73 # Force English keyboard layout.
74 if installed setxkbmap; then
78 # Use my X11 key bindings.
79 xmodmap "$HOME/.xmodmaprc"
81 # Change the background if available.
82 if test -f "$HOME/.background" && test -n "$set_background"; then
83 if installed hsetroot; then
84 hsetroot -full "$HOME/.background"
85 elif installed feh; then
86 feh --bg-scale "$HOME/.background"
87 # Remove the unnecessary ~/.fehbg file created by `feh`. I don't want
88 # to restore the background, I just run `feh` on each startx run.
89 # --no-fehbg is only available in recent feh releases.
94 # Display timed reminders and recheck the file for changes every minute (-z1).
95 if installed remind && test -f "$HOME/.reminders"; then
96 remind -z1 -k'.shell/bin/notify.py %s &' "$HOME/.reminders" &
100 # Set color temperature of display according to time of day.
101 if installed redshift; then
102 redshift -l 49.9:10.9 -t 5500:4500 >/dev/null &
106 # XMonad doesn't start a terminal emulator on its own, start one when I login.
107 (urxvt || rxvt || xterm) &
109 # Start window manager.
114 # Kill ssh-agent to prevent unused background processes.
115 if test -x /usr/bin/ssh-agent; then
116 /usr/bin/ssh-agent -k >/dev/null
117 # No `eval` necessary, we terminate anyway.
119 # Kill remaining background processes.
120 kill $background_pids