summarylogtreecommitdiffstats
path: root/gschemas.install
blob: 4c2186853aec2a3c1b93a77e6e7acdd7326dde19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
compile_schemas() {
    glib-compile-schemas /usr/share/glib-2.0/schemas/
}

instructions() {
    echo "Don't forget to restart GNOME Shell ([Alt]+[F2], r) and to enable extension with gnome-tweak-tool."
}

post_install() {
    compile_schemas
    instructions
}

post_upgrade() {
    compile_schemas
    instructions
}

post_remove() {
    compile_schemas
}