summaryrefslogtreecommitdiff
path: root/autostart.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autostart.sh')
-rwxr-xr-xautostart.sh31
1 files changed, 0 insertions, 31 deletions
diff --git a/autostart.sh b/autostart.sh
deleted file mode 100755
index 058dfff..0000000
--- a/autostart.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/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:'Plata-Noir' icon-theme:'Mint-Y-Dark-Blue' cursor-theme:'Adwaita' &
- xrdb ~/.Xresources
- runifnot portmaster-start --data=/opt/safing/portmaster notifier
- runifnot jamesdsp -t
-fi
-
-[ -x "$XDG_CONFIG_HOME/computerrc.sh" ] && "$XDG_CONFIG_HOME/computerrc.sh"