blob: 2a82804724094927d584b0a33e57e0707e65dce8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|