mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:17:14 +08:00
18 lines
396 B
Plaintext
18 lines
396 B
Plaintext
post_install() {
|
|
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
|
|
usr/lib/vlc/vlc-cache-gen -f usr/lib/vlc/plugins
|
|
sed -i -e 's/#qt-system-tray=1/qt-system-tray=0/' /home/*/.config/vlc/vlcrc
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
pre_remove() {
|
|
rm -f usr/lib/vlc/plugins/plugins-*.dat
|
|
}
|
|
|
|
post_remove() {
|
|
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
|
|
}
|