Add waybar toggle script and keybinding

This commit is contained in:
Sravan Balaji
2025-04-29 21:43:50 -04:00
parent 54ae8e57d3
commit c17504809a
3 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
if systemctl --user is-active waybar.service; then
systemctl --user stop waybar.service
else
systemctl --user start waybar.service
fi