diff options
author | zachir <zachir@librem.one> | 2023-10-19 09:22:58 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2023-10-19 09:22:58 -0500 |
commit | 98f46e3b56a94067218a991a93ffd0f5e2554e11 (patch) | |
tree | 3632cb89431830ce11e33f94258bf4f1120660f4 /autostart.sh | |
parent | d2bfa8425823f116af8f641496a6a7af72318717 (diff) |
Use X11 and not Wayland now
Diffstat (limited to 'autostart.sh')
-rwxr-xr-x | autostart.sh | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/autostart.sh b/autostart.sh deleted file mode 100755 index 6ef26b6..0000000 --- a/autostart.sh +++ /dev/null @@ -1,34 +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 - gnome="org.gnome.desktop.interface" - gsettings set $gnome gtk-theme 'Plata-Noir-Compact' - gsettings set $gnome icon-theme 'Mint-Y-Dark-Blue' - gsettings set $gnome 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" |