2012-10-16 10:17:25 +02:00
|
|
|
#!/bin/bash
|
2013-03-04 11:12:45 +01:00
|
|
|
|
2012-10-07 15:16:58 +02:00
|
|
|
xmodmap ~/.Xmodmap
|
|
|
|
|
2012-10-16 10:17:25 +02:00
|
|
|
# Source scripts in /etc/X11/xinit/xinitrc.d/
|
|
|
|
if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
|
|
|
for f in /etc/X11/xinit/xinitrc.d/*; do
|
|
|
|
[ -x "$f" ] && . "$f"
|
|
|
|
done
|
|
|
|
unset f
|
|
|
|
fi
|
|
|
|
|
2013-03-03 00:16:14 +01:00
|
|
|
redshift -l 51.1180:4.0012 &
|
2013-02-15 00:49:00 +01:00
|
|
|
unclutter &
|
2013-11-03 22:48:41 +01:00
|
|
|
feh --bg-tile ~/pictures/wallpaper-424947.jpg
|
2013-03-04 11:12:45 +01:00
|
|
|
|
2013-11-03 22:48:41 +01:00
|
|
|
# test -n "$1" && wm=$1 || wm="/usr/local/bin/stumpwm"
|
|
|
|
exec sbcl --eval "(ql:quickload \"stumpwm\")" --eval "(stumpwm:stumpwm)"
|