blob: 363105dda592ee6e3abed2642cc0d427ec460fa6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
post_install() {
instruct
echo "and enable the extension with gnome-extensions."
}
post_upgrade() {
instruct
echo "for the changes to have an effect."
}
post_remove() {
glib-compile-schemas usr/share/glib-2.0/schemas/
}
instruct() {
post_remove
echo "Don't forget to restart GNOME Shell ([Alt]+[F2], r)"
}
# vim: ts=2 sw=2 et:
# Adapted from https://github.com/dffischer/gnome-shell-extensions
|