mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
19 lines
464 B
Text
19 lines
464 B
Text
|
post_install() {
|
||
|
xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
|
||
|
echo "when you use a non-reparenting window manager"
|
||
|
echo "set _JAVA_AWT_WM_NONREPARENTING=1 in"
|
||
|
echo "/etc/profile.d/jre.sh"
|
||
|
# update-desktop-database -q
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
|
||
|
# update-desktop-database -q
|
||
|
}
|
||
|
|
||
|
|
||
|
post_remove() {
|
||
|
xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
|
||
|
# update-desktop-database -q
|
||
|
}
|