aboutsummaryrefslogtreecommitdiff
path: root/executable_dot_xinitrc.tmpl
blob: 580eb8acdac65523bd0f6db7419059f4d871dc89 (plain) (blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/sh

# Make sure that everything started by our window manager
# happens from ${HOME}
cd ${HOME}

# Load our resources
if test -f ~/.Xresources; then
    # -I specifies the path to look for
    # #include references.
    xrdb -merge -I$HOME ~/.Xresources
fi

# Set our background to black
xsetroot -solid black

# xset dpms standby suspend off
xset dpms 180 210 240

case `uname` in
    Darwin)
        exec cwm
        ;;

    OpenBSD)
        export LANG="{{ .locale }}"
        export LC_time="en_GB.UTF-8"
        export LC_COLLATE=C
        redshift &
        ${HOME}/bin/icd
        urxvtd -q -f -o &
        exec cwm
	;;

    Linux)
        ${HOME}/bin/icd
        ${HOME}/bin/mice.sh

        redshift &
        ${HOME}/.screenlayout/{{ .chezmoi.hostname }}-home.sh
        trayer --tint black --edge top --SetDockType true --SetPartialStrut true \
          --expand true --width 10 --transparent true --height 12 --align right &
        ${HOME}/.dzen/battery.sh &

        sh ${HOME}/bin/startaudio &
        pavucontrol &

        urxvtd -q -f -o &
        urxvtc &

        exec xmonad
        ;;
esac