mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-15 12:54:15 +01:00
e4f18c2281
This is mainly so I remember the changes I made to GNOME.
8 lines
237 B
Bash
Executable File
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
|