Skip to content

Instantly share code, notes, and snippets.

@joshcangit
Forked from nicfit/disable-gnome-extensions.sh
Last active January 8, 2022 12:08
Show Gist options
  • Save joshcangit/e7a53142f38f3be2f6082f7003fcbafb to your computer and use it in GitHub Desktop.
Save joshcangit/e7a53142f38f3be2f6082f7003fcbafb to your computer and use it in GitHub Desktop.
Disable all gnome-shell extensions from command line.
for ext in $($(type -P ls) ~/.local/share/gnome-shell/extensions); do
gnome-extensions disable $ext;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment