blob: ce7546a6a0d9528b00627e4ae7bf21d69b383965 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
echo ""
echo "To have gdm automatically export QT_QPA_PLATFORM=gtk, run:"
echo "mkdir -p /usr/share/gdm/env.d/ && ln -s /usr/share/qt-gtk-platform-plugin/qt-force-gtk-platform.env /usr/share/gdm/env.d/qt-force-gtk-platform.env"
echo "!!Achtung Bear Badger Fire Decapitation Death Skull Leprosy!!"
echo "Some Qt apps will crash with this backend in use, for example: Qt Creator, Zeal and probably swathes of KDE"
echo "If it uses qtwebengine, expect death!"
echo "!!Achtung Bear Badger Fire Decapitation Death Skull Leprosy!!"
}
post_upgrade() {
post_install
}
|