feat: Moves hyprland scripts that were missed and updates systemd services to the appropriate locations.

This commit is contained in:
2025-10-03 23:50:50 -04:00
parent d32d0cf64f
commit f911bfb7f1
6 changed files with 3 additions and 3 deletions

11
env/.local/scripts/hypr/toggle-waybar vendored Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
WAYBAR_PID=$(pgrep -x waybar)
if [ -n "$WAYBAR_PID" ]; then
# kill waybar process if it's running.
kill "$WAYBAR_PID"
else
# start waybar in the background.
waybar &
fi