blob: e8f6bed8fd57e2b38f3f83159892a30c98aac653 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
echo 'If you use a lightweight windowmanager, remember to run'
echo '/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 to enable'
echo 'graphical authentication, which may be needed for pkexec to work.'
}
post_upgrade() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
}
post_remove() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
}
|