mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
76ff721098
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
11 lines
339 B
Bash
11 lines
339 B
Bash
# The gnome-shell doinst.sh script compiles custom gsettings-schemas
|
|
# in the location /usr/share/gnome-shell/gsettings-desktop-schemas
|
|
#
|
|
# The compiled schemas will remain after package removal, so clean
|
|
# them up:
|
|
|
|
GSCHEMA_DIR="/usr/share/gnome-shell/gsettings-desktop-schemas"
|
|
if [ -e "$GSCHEMA_DIR" ]; then
|
|
rm -rf "$GSCHEMA_DIR"
|
|
fi
|
|
|