nix-config/gnome/toggle.sh
Donovan Glover e4f18c2281
Add old gnome scripts
This is mainly so I remember the changes I made to GNOME.
2023-06-02 19:02:11 -04:00

8 lines
237 B
Bash
Executable File

status=$(gsettings get org.gnome.shell enabled-extensions)
if [[ "$status" == *'hidetopbar@mathieu.bidon.ca'* ]]; then
gnome-extensions disable hidetopbar@mathieu.bidon.ca
else
gnome-extensions enable hidetopbar@mathieu.bidon.ca
fi