Dotfiles/desktopenvs/hyprlua/scripts/togglewinbars.sh

16 lines
197 B
Bash
Executable File

#!/bin/bash
statecon=$( hyprpm list | grep -A1 hyprbars | grep true)
#notify-send $statecon
if [ "$statecon" != '' ]; then
hyprpm disable hyprbars
else
hyprpm enable hyprbars
fi