Created
July 26, 2024 01:02
-
-
Save T31337/a119c82439ba1b9d2529a08da4bc5944 to your computer and use it in GitHub Desktop.
Script To Fix YAKUAKE Focus Issue Under Wayland
This file contains hidden or 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 | |
#yakuake wayland focus fix | |
#Copy The Global Yakuake Config To Local | |
cp /usr/share/applications/org.kde.yakuake.desktop ~/.local/share/applications/ | |
#Make Needed Adjustments To The Config | |
sed -i -e "s/'Exec=yakuake'/'Exec=env QT_QPA_PLATFORM=xcb yakuake'/g" ~/.local/share/applications/org.kde.yakuake.desktop | |
#DONE! | |
echo -e "\e[35mYakuake Focus Should Now Be Working Under Wayland!\e[0m" | |
#May Or May Not Be Needed Afterwards? | |
echo -e "\e[35mYou May Want To Edit The AutoLaunch Entery Of Yakuake And Precede yakuake with:\env QT_QPA_PLATFORM=cxb \e[0m" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment