forked from extern/nix-config
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
|