diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2025-07-27 14:26:58 +0200 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2025-07-31 13:02:54 +0200 |
| commit | 365274e5e22b681796f07ec9002f2e5f39a77395 (patch) | |
| tree | be53265ac3a727faa7f536062d4efa503b5cc086 | |
| parent | 672bf3e1ff5c5a31c2685ed558bd399789469a9c (diff) | |
| download | niri-365274e5e22b681796f07ec9002f2e5f39a77395.tar.gz niri-365274e5e22b681796f07ec9002f2e5f39a77395.tar.bz2 niri-365274e5e22b681796f07ec9002f2e5f39a77395.zip | |
default-config: Add a bind to toggle orca (screen reader)
Signed-off-by: Ivan Molodetskikh <yalterz@gmail.com>
| -rw-r--r-- | resources/default-config.kdl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/default-config.kdl b/resources/default-config.kdl index a053f122..7f1d92a8 100644 --- a/resources/default-config.kdl +++ b/resources/default-config.kdl @@ -365,7 +365,8 @@ binds { // You can also use a shell. Do this if you need pipes, multiple commands, etc. // Note: the entire command goes as a single argument in the end. - // Mod+T { spawn "bash" "-c" "notify-send hello && exec alacritty"; } + // For example, this is a standard bind to toggle the screen reader (orca). + Super+Alt+S hotkey-overlay-title=null { spawn "sh" "-c" "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. |
