First commit

This commit is contained in:
Gu://em_ 2024-12-18 22:30:20 +01:00
commit 592eb452c6
19 changed files with 1549 additions and 0 deletions

View file

@ -0,0 +1,9 @@
#!/bin/sh
pidof waybar # Check if waybar is running
if [ $? = 0 ]; then
killall waybar # If running, stop it
else
waybar # Else, run it
fi