some updates
Signed-off-by: gwg313 <gwg313@pm.me>
This commit is contained in:
parent
1b9e091214
commit
c818330a0d
5 changed files with 75 additions and 12 deletions
|
|
@ -33,19 +33,41 @@ in
|
|||
"launcher"
|
||||
"toggle"
|
||||
];
|
||||
# Quickshell Keybinds End
|
||||
|
||||
"super+shift+Slash".action = show-hotkey-overlay;
|
||||
|
||||
"super+l".action = spawn [
|
||||
"noctalia-shell"
|
||||
"ipc"
|
||||
"call"
|
||||
"lockScreen"
|
||||
"lock"
|
||||
];
|
||||
|
||||
"xf86audioraisevolume".action = volume-up;
|
||||
"xf86audiolowervolume".action = volume-down;
|
||||
|
||||
"control+super+xf86audioraisevolume".action = spawn "brightness" "up";
|
||||
"control+super+xf86audiolowervolume".action = spawn "brightness" "down";
|
||||
"XF86MonBrightnessDown".action = spawn [
|
||||
"noctalia-shell"
|
||||
"ipc"
|
||||
"call"
|
||||
"brightness"
|
||||
"decrease"
|
||||
];
|
||||
"XF86MonBrightnessUp".action = spawn [
|
||||
"noctalia-shell"
|
||||
"ipc"
|
||||
"call"
|
||||
"brightness"
|
||||
"increase"
|
||||
];
|
||||
|
||||
"super+q".action = close-window;
|
||||
"super+b".action = spawn apps.browser;
|
||||
# "super+b".action = spawn apps.browser;
|
||||
"super+Return".action = spawn apps.terminal;
|
||||
#"super+Control+Return".action = spawn apps.appLauncher;
|
||||
"super+E".action = spawn apps.fileManager;
|
||||
"super+o".action = toggle-overview;
|
||||
|
||||
"super+f".action = maximize-column;
|
||||
"super+Shift+f".action = fullscreen-window;
|
||||
|
|
@ -53,8 +75,10 @@ in
|
|||
"super+r".action = switch-preset-column-width;
|
||||
"super+Shift+r".action = switch-preset-window-height;
|
||||
|
||||
# "control+shift+1".action = screenshot;
|
||||
# "control+shift+2".action = screenshot-window {write-to-disk = true;};
|
||||
"super+b".action =
|
||||
spawn-sh "${pkgs.grim}/bin/grim \"$HOME/Pictures/screenshots/desktop-$(${pkgs.busybox}/bin/date +%Y%m%d%H%M).png\"";
|
||||
"super+Shift+b".action =
|
||||
spawn-sh "${pkgs.grim}/bin/grim -g \"$(${pkgs.slurp}/bin/slurp -d)\" - | ${pkgs.wl-clipboard}/bin/wl-copy"; # Screenshot selection directly to clipboard
|
||||
|
||||
"super+Left".action = focus-column-left;
|
||||
"super+Right".action = focus-column-right;
|
||||
|
|
@ -65,5 +89,18 @@ in
|
|||
"super+Shift+Right".action = move-column-right;
|
||||
"super+Shift+Down".action = move-column-to-workspace-down;
|
||||
"super+Shift+Up".action = move-column-to-workspace-up;
|
||||
|
||||
"super+Control+Left".action = focus-monitor-left;
|
||||
"super+Control+Right".action = focus-monitor-right;
|
||||
"super+Control+Down".action = focus-monitor-down;
|
||||
"super+Control+Up".action = focus-monitor-up;
|
||||
|
||||
"super+BracketLeft".action = consume-or-expel-window-left;
|
||||
"super+BracketRight".action = consume-or-expel-window-right;
|
||||
"super+Comma".action = consume-window-into-column;
|
||||
"super+Period".action = expel-window-from-column;
|
||||
|
||||
"super+Home".action = focus-column-first;
|
||||
"super+End".action = focus-column-last;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue