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

if [ -n "${WAYLAND_DISPLAY}${DISPLAY}" ]; then
  notify-sound.sh off &
  runifnot swayidle
  killandrun hyprpaper
  runifnot waybar
  import-gsettings gtk-theme 'Flat-Remix-GTK-Green-Darkest-Solid'
  import-gsettings icon-theme 'Mint-X-Grey'
  import-gsettings cursor-theme 'Adwaita'
  xrdb ~/.Xresources
fi

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