2012-02-07 00:49:50 +01:00
|
|
|
# -*- mode: shell-script; eval: (git-auto-commit-mode 1) -*-
|
2011-03-07 09:10:40 +01:00
|
|
|
|
2011-10-11 22:17:13 +02:00
|
|
|
# -----[ Set background ]---------------------------------------------
|
2012-01-18 01:32:40 +01:00
|
|
|
hsetroot -center ~/pictures/wallpapers/3600x1080/wallpaper-1460625.jpg
|
2011-10-11 22:17:13 +02:00
|
|
|
|
|
|
|
# -----[ Modify keys ]------------------------------------------------
|
2012-01-11 09:31:02 +01:00
|
|
|
xmodmap ~/.Xmodmap
|
2011-10-11 22:17:13 +02:00
|
|
|
|
|
|
|
# -----[ Start some programs ]----------------------------------------
|
2011-01-13 09:32:28 +01:00
|
|
|
conky
|
2011-07-26 00:41:43 +02:00
|
|
|
numlockx &
|
2012-01-10 09:20:05 +01:00
|
|
|
emacs --daemon
|
2012-01-28 01:04:27 +01:00
|
|
|
xbindkeys
|
2011-01-13 09:32:28 +01:00
|
|
|
|
2011-09-17 09:22:42 +02:00
|
|
|
# mpdscribble
|
|
|
|
pidof mpdscribble >& /dev/null
|
|
|
|
if [ $? -ne 0 ]
|
|
|
|
then
|
|
|
|
mpdscribble &
|
|
|
|
fi
|
|
|
|
|
2012-01-18 15:29:29 +01:00
|
|
|
mpc idleloop player | { while read; do notify-send "`mpc current`"; done } &
|
2012-01-18 15:07:01 +01:00
|
|
|
|
2011-11-17 10:52:14 +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" &
|
2011-10-11 22:17:13 +02:00
|
|
|
|
|
|
|
# -----[ Start session ]----------------------------------------------
|
2011-11-09 19:51:08 +01:00
|
|
|
exec ck-launch-session /usr/bin/herbstluftwm 2>&1 > ~/.xsession_errors
|