How to show open windows from all workspaces? #235
-
I would like to always display all running applications from all workspaces in the icons task switcher. How can i achieve that with plasma-manager? In the code i was not able to find such option. The config option showOnlyCurrentDesktop in the file .config/plasma-org.kde.plasma.desktop-appletsrc enables it like so:
Now I am searching for a way to enable that behavior via plasma-manager. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Setting |
Beta Was this translation helpful? Give feedback.
-
So i just found this plasma-manager config: https://github.com/keenanweaver/nix-config/blob/22b262c4fecf085f424f455698eab42fef29b586/modules/desktop-environments/kde/plasma-manager/laptop.nix#L26 that helped me to get the correct settings. If i use these settings i get no errors: {
name = "org.kde.plasma.icontasks";
config = {
General = {
showOnlyCurrentDesktop = "false";
showOnlyCurrentActivity = "true";
showOnlyCurrentScreen = "true";
launchers = [
"applications:org.kde.dolphin.desktop"
"applications:org.kde.konsole.desktop"
"applications:firefox.desktop"
"applications:org.telegram.desktop.desktop"
"applications:vesktop.desktop"
"applications:codium.desktop"
"applications:burpsuite.desktop"
"applications:bloodhound.desktop"
"applications:ghidra.desktop"
"applications:re.rizin.cutter.desktop"
"applications:org.wireshark.Wireshark.desktop"
];
};
};
} |
Beta Was this translation helpful? Give feedback.
So i just found this plasma-manager config: https://github.com/keenanweaver/nix-config/blob/22b262c4fecf085f424f455698eab42fef29b586/modules/desktop-environments/kde/plasma-manager/laptop.nix#L26
that helped me to get the correct settings.
If i use these settings i get no errors: