Thursday, May 9, 2024
3
rated 0 times [  3] [ 0]  / answers: 1 / hits: 1918  / 1 Year ago, fri, march 17, 2023, 6:11:02

Can a command be set to run when switching to a specific virtual desktop (or an activity) in KDE environment?


I want to run a command for a desktop (e.g. desktop2) so that when I switch to that desktop, the keyboard language layout will change to English US automatically.


More From » command-line

 Answers
7

You can change to virtual desktop two using the following command line argument:



wmctrl -s 2


Thus executing



wmctrl -s 2 && setxkbmap en


should switch your to desktop 2 and change your language to english as suggested in your example.



You can use a keybinding program like autokey, or KDE custom shortcuts to set a keybinding for the above command. Alternatively, you can save the above command to a text file ending in .sh, and then make the file executable to have a clickable script that will switch desktops and change languages for you.



should switch your to desktop 2 and change your language to english as suggested in your example.






Switching activities is a bit more lengthy command.



Going to go to the next activity is simple enough using:



qdbus org.kde.kglobalaccel /component/plasma_desktop invokeShortcut "Next Activity"


However to switch to a specific activity, you must fist know it's ID which can be obtained by:



qdbus org.kde.kactivitymanagerd /ActivityManager/Activities ListActivities


Once you know the activity id you can switch to that activity via:



qdbus org.kde.kactivitymanagerd /ActivityManager/Activities SetCurrentActivity activity-key-in-previous-step


then couple that with the '&& setxkbmap en' command as shown above when switching virtual desktops to have activity switching coupled with a language change.






Also of note:



export LC_ALL=C


will change the system language to english


[#27704] Sunday, March 19, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
ligdesig

Total Points: 164
Total Questions: 106
Total Answers: 114

Location: Japan
Member since Sat, Jun 6, 2020
4 Years ago
;