aboutsummaryrefslogtreecommitdiff
path: root/wiki/Configuration:-Switch-Events.md
diff options
context:
space:
mode:
Diffstat (limited to 'wiki/Configuration:-Switch-Events.md')
-rw-r--r--wiki/Configuration:-Switch-Events.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/wiki/Configuration:-Switch-Events.md b/wiki/Configuration:-Switch-Events.md
index d1f8568a..9c60cc81 100644
--- a/wiki/Configuration:-Switch-Events.md
+++ b/wiki/Configuration:-Switch-Events.md
@@ -8,8 +8,8 @@ Here are all the events that you can bind at a glance:
```kdl
switch-events {
- lid-close { spawn "bash" "-c" "niri msg output \"eDP-1\" off"; }
- lid-open { spawn "bash" "-c" "niri msg output \"eDP-1\" on"; }
+ lid-close { spawn "notify-send" "The laptop lid is closed!"; }
+ lid-open { spawn "notify-send" "The laptop lid is open!"; }
tablet-mode-on { spawn "bash" "-c" "gsettings set org.gnome.desktop.a11y.applications screen-keyboard-enabled true"; }
tablet-mode-off { spawn "bash" "-c" "gsettings set org.gnome.desktop.a11y.applications screen-keyboard-enabled false"; }
}
@@ -25,12 +25,12 @@ Currently, only the `spawn` action are supported.
These events correspond to closing and opening of the laptop lid.
-You could use them to turn the laptop internal monitor off and on (until niri gets this functionality built-in).
+Note that niri will already automatically turn the internal laptop monitor on and off in accordance with the laptop lid.
```kdl
switch-events {
- lid-close { spawn "bash" "-c" "niri msg output \"eDP-1\" off"; }
- lid-open { spawn "bash" "-c" "niri msg output \"eDP-1\" on"; }
+ lid-close { spawn "notify-send" "The laptop lid is closed!"; }
+ lid-open { spawn "notify-send" "The laptop lid is open!"; }
}
```