summarylogtreecommitdiffstats
path: root/gtk3.install
blob: 92341331ab9db6ad9c54251c2611a9188d245700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
post_install() {
    /usr/bin/gtk-query-immodules-3.0 --update-cache
    /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
    /usr/bin/gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
    echo "If you want to use the global menus and you are not using Unity, you will need"
    echo "to add the following to ~/.config/gtk-3.0/settings.ini"
    echo
    echo "********************************"
    echo "[Settings]"
    echo "gtk-shell-shows-menubar = 1"
    echo "********************************"
}

post_upgrade() {
    post_install
}

pre_remove() {
    rm -f /usr/lib/gtk-3.0/3.0.0/immodules.cache
}

post_remove() {
    /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
    /usr/bin/gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
}