feat: cpu frequency control bind

This commit is contained in:
2025-07-11 14:05:41 +03:00
parent 498aab443a
commit f00849e66a
5 changed files with 63 additions and 7 deletions

9
hypr/scripts/toggle_waybar.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
PROGRAM="waybar"
if pgrep -x "$PROGRAM" > /dev/null; then
pkill -x $PROGRAM
else
$PROGRAM &
fi