summaryrefslogtreecommitdiffstats
path: root/.xinitrc
blob: 05043533768a4cde86707f77b4a6551e8881a9bc (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
# -*- mode: shell-script -*-

# -----[ Set background ]---------------------------------------------
xsetroot -solid black

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

# -----[ Start some programs ]----------------------------------------
conky
numlockx &

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

# -----[ Start notifier ]---------------------------------------------
/usr/bin/dunst -fn "-misc-dejavu sans mono-medium-r-*-*-10-*-*-*-*-*-*-*" \
    -nb "#252a2b" -nf "#eeeeec" &

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