Files
dotfiles/hypr/scripts/toggle_waybar.sh
Nikolai Papin f4e7adb2e6 chore: remove cryfsunlock.sh script;
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
2025-11-07 15:02:34 +03:00

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