First commit: Beta 25.04.04

This commit is contained in:
Gu://em_ 2025-04-04 16:51:00 +02:00
commit e6b08b867f
58 changed files with 4196 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#!/bin/sh
pidof waybar # Check if waybar is running
if [ $? = 0 ]; then
# If running, stop it
killall waybar & echo "off" > ~/.config/hypr/status/waybar
else
# Else, run it
waybar & echo "on" > ~/.config/hypr/status/waybar
fi