blob: e4169c81bbd8f1e6e7687b4a94e7f7ec2306a2bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
Etbg_update_list usr/share/Eterm/pix
# update font path to make sure that
# 75dpi and misc can be found by Eterm
xset fp default
if [ $? -ne 0 ]; then
echo "ERROR: Unable to update font path via xset!"
fi
}
post_upgrade() {
Etbg_update_list usr/share/Eterm/pix
}
post_remove() {
rm -f usr/share/Eterm/pix/pixmaps.list
}
|