aboutsummaryrefslogtreecommitdiff
path: root/resources
diff options
context:
space:
mode:
authorIvan Molodetskikh <yalterz@gmail.com>2025-08-20 14:48:21 +0300
committerIvan Molodetskikh <yalterz@gmail.com>2025-08-20 14:48:54 +0300
commitd4e1b2231b3831a3a3ebe1bca3283c74fe5bba4e (patch)
tree637b7581121c97e3eb59b8dabda2a493356425fc /resources
parente81f356908fe38ec45c74cf822dd102efbcf6457 (diff)
downloadniri-d4e1b2231b3831a3a3ebe1bca3283c74fe5bba4e.tar.gz
niri-d4e1b2231b3831a3a3ebe1bca3283c74fe5bba4e.tar.bz2
niri-d4e1b2231b3831a3a3ebe1bca3283c74fe5bba4e.zip
default-config: Mark orca as allow-when-locked
Consistent with GNOME. Move down so allow-when-locked explanation is above.
Diffstat (limited to 'resources')
-rw-r--r--resources/default-config.kdl10
1 files changed, 5 insertions, 5 deletions
diff --git a/resources/default-config.kdl b/resources/default-config.kdl
index 55949bc4..a1c42ced 100644
--- a/resources/default-config.kdl
+++ b/resources/default-config.kdl
@@ -366,11 +366,6 @@ binds {
Mod+D hotkey-overlay-title="Run an Application: fuzzel" { spawn "fuzzel"; }
Super+Alt+L hotkey-overlay-title="Lock the Screen: swaylock" { spawn "swaylock"; }
- // Use spawn-sh to run a shell command. Do this if you need pipes, multiple commands, etc.
- // Note: the entire command goes as a single argument. It's passed verbatim to `sh -c`.
- // For example, this is a standard bind to toggle the screen reader (orca).
- Super+Alt+S hotkey-overlay-title=null { spawn-sh "pkill orca || exec orca"; }
-
// Example volume keys mappings for PipeWire & WirePlumber.
// The allow-when-locked=true property makes them work even when the session is locked.
XF86AudioRaiseVolume allow-when-locked=true { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0.1+"; }
@@ -382,6 +377,11 @@ binds {
XF86MonBrightnessUp allow-when-locked=true { spawn "brightnessctl" "--class=backlight" "set" "+10%"; }
XF86MonBrightnessDown allow-when-locked=true { spawn "brightnessctl" "--class=backlight" "set" "10%-"; }
+ // Use spawn-sh to run a shell command. Do this if you need pipes, multiple commands, etc.
+ // Note: the entire command goes as a single argument. It's passed verbatim to `sh -c`.
+ // For example, this is a standard bind to toggle the screen reader (orca).
+ Super+Alt+S allow-when-locked=true hotkey-overlay-title=null { spawn-sh "pkill orca || exec orca"; }
+
// Open/close the Overview: a zoomed-out view of workspaces and windows.
// You can also move the mouse into the top-left hot corner,
// or do a four-finger swipe up on a touchpad.