legacy-dotfiles/.xinitrc

27 lines
623 B
Text
Raw Normal View History

2012-02-23 12:41:38 +01:00
#_ Modify keys
2012-01-11 09:31:02 +01:00
xmodmap ~/.Xmodmap
2012-02-23 12:41:38 +01:00
#_ Start some programs
numlockx &
2012-02-23 12:36:28 +01:00
emacs --daemon &
xbindkeys &
2012-02-23 12:41:38 +01:00
#_. mpdscribble
2011-09-17 09:22:42 +02:00
pidof mpdscribble >& /dev/null
if [ $? -ne 0 ]
then
mpdscribble &
fi
2012-02-23 12:41:38 +01:00
#_. mpdnotify
2012-01-18 15:29:29 +01:00
mpc idleloop player | { while read; do notify-send "`mpc current`"; done } &
2012-02-23 12:41:38 +01:00
#_ Start notifier
2011-12-09 01:14:25 +01:00
/usr/bin/dunst \
2011-12-23 13:38:22 +01:00
-fn "-misc-tamsyn-medium-r-normal-*-14-*-*-*-*-*-iso8859-*" \
2012-01-06 11:11:59 +01:00
-nb "#000000" -nf "#15abc3" &
2012-02-23 12:41:38 +01:00
#_ Start session
2011-11-09 19:51:08 +01:00
exec ck-launch-session /usr/bin/herbstluftwm 2>&1 > ~/.xsession_errors
2012-02-23 12:41:38 +01:00
#_ Local Variables
# Local Variables:
# mode: shell-script
# eval: (git-auto-commit-mode 1)
# eval: (allout-mode 1)
# End: