mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
9 lines
220 B
Bash
Executable File
9 lines
220 B
Bash
Executable File
#!/bin/sh
|
|
UUID=`grep -E '^[ ]*"uuid":' metadata.json | sed 's@^[ ]*"uuid":[ ]*"\(.\+\)",[ ]*@\1@'`
|
|
INSTALLBASE=~/.local/share/gnome-shell/extensions
|
|
|
|
gnome-extensions disable "$UUID"
|
|
rm -rf "$INSTALLBASE/$UUID"
|
|
|
|
exit 0;
|