diff options
author | zsmith <zsmith@newhopechurch.tv> | 2025-08-11 09:26:05 -0500 |
---|---|---|
committer | zsmith <zsmith@newhopechurch.tv> | 2025-08-11 09:26:05 -0500 |
commit | 15e94d2694f8e84b0fa4454200c1c5bd0c449089 (patch) | |
tree | d25464c3943ecf7e608f7121c8912ec8aeaad39f /autostart.sh | |
parent | 1fc7faa161550f0b43fcfa5b31f58035ddcbd2bc (diff) |
Remove everything not Mac compatible
Diffstat (limited to 'autostart.sh')
-rwxr-xr-x | autostart.sh | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/autostart.sh b/autostart.sh deleted file mode 100755 index 42eb092..0000000 --- a/autostart.sh +++ /dev/null @@ -1,30 +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 'Flat-Remix-GTK-Green-Darkest-Solid' - import-gsettings icon-theme 'Mint-X-Grey' - xrdb "$XDG_CONFIG_HOME/X11/xresources" -fi - -[ -x "$XDG_CONFIG_HOME/computerrc.sh" ] && "$XDG_CONFIG_HOME/computerrc.sh" |