mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-03-04 01:21:13 +01:00
8 lines
237 B
Bash
8 lines
237 B
Bash
|
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
|