blob: ecced9ab9c1467fbf01c27cb73ffe60b3bac17fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
if [[ -x usr/bin/xdg-icon-resource ]]; then
usr/bin/xdg-icon-resource forceupdate &>/dev/null || true
fi
echo "If you get distorted sound (or no sound at all) in skype, try adding PULSE_LATENCY_MSEC=60 to your"
echo "env before starting skypetab-ng. Something like 'export PULSE_LATENCY_MSEC=60' in .bashrc, for example."
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}
|