summaryrefslogtreecommitdiffstats
path: root/.xinitrc
blob: 27fe3f69901175ddd9252618956af02caec20865 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- mode: shell-script; eval: (git-auto-commit-mode 1) -*-

# -----[ Modify keys ]------------------------------------------------
xmodmap ~/.Xmodmap

# -----[ Start some programs ]----------------------------------------
numlockx &
emacs --daemon &
xbindkeys &

# mpdscribble
pidof mpdscribble >& /dev/null
if [ $? -ne 0 ]
then
    mpdscribble &
fi

mpc idleloop player | { while read; do notify-send "`mpc current`"; done } &

# -----[ Start notifier ]---------------------------------------------
/usr/bin/dunst \
    -fn "-misc-tamsyn-medium-r-normal-*-14-*-*-*-*-*-iso8859-*" \
    -nb "#000000" -nf "#15abc3" &

# -----[ Start session ]----------------------------------------------
exec ck-launch-session /usr/bin/herbstluftwm 2>&1 > ~/.xsession_errors