Last active
October 13, 2023 15:39
-
-
Save cesalazar/3c416c22560a7f8f55b0dc27370a6435 to your computer and use it in GitHub Desktop.
Fix qt after upgrading packages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Packages installed from AUR that use anything Qt related, fail to start after | |
# upgrading. | |
# | |
# So far this seems to be the solution, that I had googled now at least 3 times | |
# after breaking some apps: | |
# "Reinstall qt5-styleplugins from scratch. Do NOT use the cached download" | |
yay -S --answerclean All --answerdiff None --answeredit None \ | |
--rebuildall --noconfirm qt5-styleplugins |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment