Update hotkeys and pinned applications
This commit is contained in:
parent
da0ecddc13
commit
20e4682100
|
@ -1,6 +1,4 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
fonts,
|
||||
...
|
||||
|
@ -48,10 +46,17 @@
|
|||
};
|
||||
};
|
||||
|
||||
hotkeys.commands."launch-konsole" = {
|
||||
name = "Launch Konsole";
|
||||
key = "Meta+Alt+K";
|
||||
command = "konsole";
|
||||
hotkeys.commands = {
|
||||
"launch-terminal" = {
|
||||
name = "Launch Alacritty Terminal Emulator";
|
||||
key = "Meta+Alt+T";
|
||||
command = "alacritty";
|
||||
};
|
||||
"launch-emacs" = {
|
||||
name = "Launch Emacs Client Window";
|
||||
key = "Meta+Alt+E";
|
||||
command = "emacsclient -c";
|
||||
};
|
||||
};
|
||||
|
||||
panels = [
|
||||
|
@ -72,9 +77,10 @@
|
|||
name = "org.kde.plasma.icontasks";
|
||||
config = {
|
||||
General.launchers = [
|
||||
"applications:Alacritty.desktop"
|
||||
"applications:emacsclient.desktop"
|
||||
"applications:org.kde.dolphin.desktop"
|
||||
"applications:Alacritty.desktop"
|
||||
"applications:emacs.desktop"
|
||||
"applications:firefox.desktop"
|
||||
"applications:org.kde.elisa.desktop"
|
||||
];
|
||||
};
|
||||
|
@ -94,15 +100,7 @@
|
|||
|
||||
shortcuts = {
|
||||
ksmserver = {
|
||||
"Lock Session" = ["Screensaver" "Meta+Ctrl+Alt+L"];
|
||||
};
|
||||
|
||||
kwin = {
|
||||
"Expose" = "Meta+,";
|
||||
"Switch Window Down" = "Meta+J";
|
||||
"Switch Window Left" = "Meta+H";
|
||||
"Switch Window Right" = "Meta+L";
|
||||
"Switch Window Up" = "Meta+K";
|
||||
"Lock Session" = ["Screensaver" "Meta+Alt+L"];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Reference in a new issue