2012-10-16 10:17:25 +02:00
|
|
|
#!/bin/bash
|
2013-03-04 11:12:45 +01:00
|
|
|
|
2014-08-21 11:04:25 +02:00
|
|
|
_hostname="$(hostname)"
|
|
|
|
|
2012-10-07 15:16:58 +02:00
|
|
|
xmodmap ~/.Xmodmap
|
2015-09-03 16:02:15 +02:00
|
|
|
xrdb -merge ~/.Xdefaults
|
2012-10-07 15:16:58 +02:00
|
|
|
|
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 &
|
2015-06-17 11:01:33 +02:00
|
|
|
mowedline &
|
|
|
|
mpc-status-mowedline &
|
2015-09-03 16:03:51 +02:00
|
|
|
compton -b -c -G -r 10 -i 0.75 -e 1.0 \
|
|
|
|
--inactive-dim 0.2 \
|
|
|
|
--focus-exclude "name = 'mowedline'" \
|
|
|
|
--shadow-exclude "name = 'mowedline'" \
|
|
|
|
--fade-exclude "name = 'mowedline'" \
|
|
|
|
--blur-background-exclude "name = 'mowedline'" \
|
|
|
|
--unredir-if-possible-exclude "name = 'mowedline'" \
|
|
|
|
--focus-exclude "name = 'i3lock'" \
|
|
|
|
--focus-exclude "class_g = 'Vlc'" \
|
|
|
|
--focus-exclude "name = 'rofi'" \
|
|
|
|
--detect-transient
|
2015-09-03 16:04:01 +02:00
|
|
|
rofi &
|
2013-03-04 11:12:45 +01:00
|
|
|
|
2014-11-04 10:26:23 +01:00
|
|
|
export $(/usr/bin/gnome-keyring-daemon --start --components=secrets,gpg)
|
2014-09-23 17:07:48 +02:00
|
|
|
|
2015-04-19 23:32:34 +02:00
|
|
|
# exec ~/.local/share/quicklisp/local-projects/stumpwm/stumpwm
|
2015-06-17 11:01:33 +02:00
|
|
|
# exec /usr/bin/awesome
|
|
|
|
exec /usr/bin/herbstluftwm
|