summaryrefslogtreecommitdiff
path: root/autostart.sh
blob: e9fbedaca12aefb2fecccc6a79528c6bcd0ddbfb (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
#!/bin/sh
runifnot () {
  if type $1 >/dev/null; then
    echo $1
    if [ -z "$(pgrep -Uzachir -f $1)" ]; then
      $@ &
    fi
  fi
}

#runifnot runsvdir ~/.runit/runsvdir
notify-sound.sh off &
runifnot picom
runifnot xss-lock slockd
runifnot sxhkd
runifnot dunst
runifnot caffeine
if "$(type xmonad >/dev/null 2>&1)"; then
  if ["$(crcparse WM)" = "$(which xmonad)" ]; then
    runifnot stalonetray
  fi
fi
xwallpaper --zoom ~/background.jpg
setxkbmap -option "caps:escape"

[ -x "$XDG_CONFIG_HOME/computerrc.sh" ] && "$XDG_CONFIG_HOME/computerrc.sh"