blob: d02b6473236cfc905d54e1a25556de08a6bc39ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
post_install() {
glib-compile-schemas usr/share/glib-2.0/schemas
echo "==============================================================="
echo "The current version of this extension only works with \033[41;30;2mGNOME 40 or lower\033[0m\!"
echo "If you're using the latest GNOME, it can't be enabled."
echo "==============================================================="
echo "To use the extension:"
echo " * Restart GNOME Shell ([Alt]+[F2], r) or reboot your computer"
echo " * Activate it in GNOME Extensions"
echo "==============================================================="
}
post_upgrade() {
post_install $1
}
post_remove() {
post_install $1
}
|