aboutsummaryrefslogblamecommitdiff
path: root/.xinitrc
blob: 6c8f97f75b47c0def3f6fcf1209d725d247ea7e8 (plain) (tree)
1
2
         
 
















                                                                                  
                                          








                                     
#!/bin/sh

case `uname` in
    Darwin)
        . /opt/local/etc/X11/xinit/xinitrc
        ;;
    *)
        if test -f ~/.Xresources; then
            xrdb -merge -I$HOME ~/.Xresources
        fi
        redshift &
        ${HOME}/bin/icd
        # xcompmgr &
        trayer --tint black --edge top --SetDockType true --SetPartialStrut true \
          --expand true --width 10 --transparent true --height 12 --align right &
        ${HOME}/.dzen/battery.sh &
        pavucontrol &
        urxvtd -q -f -o &
        urxvtc &
        ${HOME}/.screenlayout/zeta-home.sh
        if [ "false" = "True" ]; then
            sh bin/startaudio &
        fi
        ${HOME}/bin/mice.sh
        xset dpms 180 300 600

        exec /usr/bin/xmonad
        ;;
esac