summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2024-01-12 07:44:01 -0600
committerzachir <zachir@librem.one>2024-01-12 07:44:01 -0600
commitce99c3851ca87e2292dc8fb32d6023996b2f0aa0 (patch)
tree93dcbc8e3bc0903652cfb3a45ca7e54154ed7a2d
parent0ae6edf44462614ff97b201570a6a9a7386612ab (diff)
cla: hypr: Remove autostart.sh
We're just going to use hyprland.conf exec-once instead of autostart.sh
-rwxr-xr-xautostart.sh32
-rw-r--r--hypr/hyprland.conf14
2 files changed, 11 insertions, 35 deletions
diff --git a/autostart.sh b/autostart.sh
deleted file mode 100755
index ed60f59..0000000
--- a/autostart.sh
+++ /dev/null
@@ -1,32 +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'
- import-gsettings cursor-theme 'Adwaita'
- xrdb ~/.Xresources
- runifnot easyeffects
-fi
-
-[ -x "$XDG_CONFIG_HOME/computerrc.sh" ] && "$XDG_CONFIG_HOME/computerrc.sh"
diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf
index 3712be3..88039e7 100644
--- a/hypr/hyprland.conf
+++ b/hypr/hyprland.conf
@@ -10,12 +10,20 @@ monitor = DP-1, 1920x1080@60, 0x0, 1
#{{{ Autostart
# Execute your favorite apps at launch
# exec-once = waybar & hyprpaper & firefox
-exec-once = ~/.config/autostart.sh
-exec-once = /usr/lib/polkit-kde-authentication-agent-1
+# exec-once = ~/.config/autostart.sh
exec-once = xdph
-#exec-once = $HOME/.local/share/hyprload/hyprload.sh
exec-once = hyprpm reload -n
+exec-once = hyprpaper
+exec-once = swayidle
+exec-once = waybar
exec-once = pypr
+exec-once = /usr/lib/polkit-kde-authentication-agent-1
+exec-once = import-gsettings gtk-theme 'Flat-Remix-GTK-Green-Darkest-Solid'
+exec-once = import-gsettings icon-theme 'Mint-X-Grey'
+exec-once = import-gsettings cursor-theme 'Adwaita'
+exec-once = xrdb ~/.Xresources
+exec-once = easyeffects
+exec-once = mpd
#}}}
# Source a file (multi-file configs)