plasma-manager icon indicating copy to clipboard operation
plasma-manager copied to clipboard

hotkey module doesn't work

Open CodeF53 opened this issue 3 months ago • 0 comments

I have the following config:

{
  programs.plasma = {
    hotkeys.commands."launch-konsole" = {
      name = "Launch Konsole";
      keys = [ "Meta+Alt+K" ]; # I tried using keys instead of key = "Meta+Alt+K" as a debugging step, both have same issue 
      command = "konsole";
    };
  };
}

after a sudo nixos-rebuild switch --max-jobs auto --cores 16 --flake ~/nixConfig, and reboot, the problem lies in ~/.config/kglobalshortcutsrc

if I cat ~/.config/kglobalshortcutsrc | tail, I can see that plasma-manager just didn't assign a value to launch-konsole after adding it to kglobalshortcutsrc

[services][plasma-manager-commands.desktop]
launch-konsole= 

This leads to hotkeys just not working at all

CodeF53 avatar Sep 04 '25 07:09 CodeF53