summarylogtreecommitdiffstats
path: root/gschemas.install
blob: 863897ad543601070786b575a2b13685f3bbef3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
post_install() {
  instruct
  echo "and enable the extension with gnome-tweak-tool."
}

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: