mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-03-03 17:11:45 +01:00
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
|