mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-11-02 11:43:58 +00:00
16 lines
406 B
Text
16 lines
406 B
Text
|
post_install() {
|
||
|
echo ""
|
||
|
echo "Setup Tutorial"
|
||
|
echo ""
|
||
|
echo "For Flatpak Libadwaita applications, you need to override their permissions:"
|
||
|
echo "sudo flatpak override --filesystem=xdg-config/gtk-4.0"
|
||
|
echo ""
|
||
|
echo "For Flatpak applications, you need to override their permissions:"
|
||
|
echo "sudo flatpak override --filesystem=xdg-config/gtk-3.0"
|
||
|
echo ""
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
}
|