chore: remove old kitty configuration files; chore: remove libinput-gestures.conf; chore: remove unused rofi-wayland images; feat: add gesture controls for rofi menu, notification center and volume in hyprland; feat: add privacy window rules for zen browser and Logseq; refactor: update keybinds and menu commands in hyprland configuration; fix: change OBS keybinds from bindrn to bindr for proper functionality; feat: set GTK theme for waybar in toggle script; feat: enhance calendar widget with year view and click actions in waybar
10 lines
143 B
Bash
Executable File
10 lines
143 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PROGRAM="waybar"
|
|
|
|
if pgrep -x "$PROGRAM" > /dev/null; then
|
|
pkill -x $PROGRAM
|
|
else
|
|
GTK_THEME="Simply_Circles_Dark" $PROGRAM &
|
|
fi
|