]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - xinitrc
xinitrc: Fix background check.
[config/dotfiles.git] / xinitrc
1 #!/bin/sh
2
3 # startx configuration file.
4
5 # Copyright (C) 2011-2012  Simon Ruderich
6 #
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.
11 #
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.
16 #
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/>.
19
20
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 set it here, might be
25 # overwritten by shell setup scripts.
26 LANG=en_US.UTF-8
27 export LANG
28
29
30 # Start ssh-agent if we have private keys, thanks to
31 # http://code.haskell.org/XMonadContrib/scripts/xinitrc (read on 2011-06-19).
32 if test -x /usr/bin/ssh-agent && test -f "$HOME/.ssh/id_rsa"; then
33     # -s to force bourne shell output. This file is a bourne shell script even
34     # if the environment might suggest otherwise.
35     eval `/usr/bin/ssh-agent -s`
36 fi
37
38 # Use a black background for the root window.
39 xsetroot -solid black
40
41 # Force English keyboard layout.
42 if test -x /usr/bin/setxkbmap; then
43     setxkbmap us
44 fi
45
46 # Use my X11 key bindings.
47 xmodmap "$HOME/.xmodmaprc"
48
49 # Default to use a background image. Can be disabled in .xinitrc.local.
50 set_background=yes
51
52 # Load settings for the local system.
53 if test -f "$HOME/.xinitrc.local"; then
54     . "$HOME/.xinitrc.local"
55 fi
56
57 # Change the background if available.
58 if test -f "$HOME/.background" && test -n "$set_background"; then
59     if test -x /usr/bin/hsetroot; then
60         hsetroot -full "$HOME/.background"
61     elif test -x /usr/bin/feh; then
62         feh --bg-scale "$HOME/.background"
63     fi
64 fi
65
66 # Display timed reminders and recheck the file for changes every minute (-z1).
67 if test -x /usr/bin/remind && test -f "$HOME/.reminders"; then
68     remind -z1 -k'.shell/bin/notify.py %s &' "$HOME/.reminders" &
69 fi
70
71 # Start XMonad.
72 xmonad
73
74 # vim: ft=sh