diff options
Diffstat (limited to 'xinitrc')
| -rw-r--r-- | xinitrc | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -0,0 +1,19 @@ +if [ -d /etc/X11/xinit/xinitrc.d ]; then + for f in /etc/X11/xinit/xinitrc.d/*; do + [ -x "$f" ] && . "$f" + done + unset f +fi + +# French keyboard layout +setxkbmap -layout "fr" + +# No more "bip" +xset -b + +[ -x "/usr/bin/numlockx" ] && numlockx on +[ -x "/usr/bin/dunst" ] && exec dunst & +[ -x "/usr/bin/pulseaudio" ] && exec pulseaudio --start & +[ -x "/usr/bin/redshift" ] && exec redshift -l 48.390929:-4.487095 & + +exec i3 |
