feat(hypr): add window swallowing for kitty and Steam workspace rules; feat(waybar): create minimal config for gamemode and add notification panel button; refactor(waybar): simplify config, merge memory/swap displays, update workspace icons; refactor(swaync): remove CPU slider and adjust button styling; experiment(hypr): increase vibrancy and change screenshot sound; experiment(rmpc): update progress bar symbols; fix(rofi): add mouse support to all menu configurations; chore(hypr): update gamemode script to toggle minimal waybar
10 lines
253 B
Bash
Executable File
10 lines
253 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if pgrep -x waybar > /dev/null; then
|
|
pkill -x waybar
|
|
pkill -x nwg-dock-hyprla
|
|
else
|
|
GTK_THEME="Simply_Circles_Dark" waybar &
|
|
nwg-dock-hyprland -i 25 -w 12 -hi -x -ico view_icon -c "$HOME/.config/rofi/launchers/type-1/launcher.sh" &
|
|
fi
|