feat: Adds arch specific scripts and removes raycast (macOS) specific scripts.

This commit is contained in:
2025-09-21 01:03:39 -04:00
parent 40fe096baa
commit d90146fde3
8 changed files with 103 additions and 145 deletions

11
scripts/arch/toggle-waybar 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