]> git.mdlowis.com Git - proto/labwc.git/commitdiff
docs/autostart: remove wlr-randr {--off,--on}
authorJohan Malm <jgm323@gmail.com>
Mon, 3 Jan 2022 23:32:02 +0000 (23:32 +0000)
committerJohan Malm <jgm323@gmail.com>
Mon, 3 Jan 2022 23:32:02 +0000 (23:32 +0000)
swayidle previously used wlr-randr to enable/disable outputs, but since
commit a837fefc, this re-arranges views so is not to be used in the
context of idle system power management.

docs/autostart

index a9772be8ecf8c80fcd84d08cb1be93d41a89ee67..d382408bd38ee2043d68fe176fcfcaf7ab8e5932 100644 (file)
@@ -15,15 +15,19 @@ kanshi >/dev/null 2>&1 &
 # Launch a panel such as yambar or waybar.
 waybar >/dev/null 2>&1 &
 
-# Enable notifications. Typically GNOME/KDE application notifications go through the
-# org.freedesktop.Notifications D-Bus API and require a client such as mako to
-# function correctly. Thunderbird is an example of this.
+# Enable notifications. Typically GNOME/KDE application notifications go
+# through the org.freedesktop.Notifications D-Bus API and require a client such
+# as mako to function correctly. Thunderbird is an example of this.
 mako >/dev/null 2>&1 &
 
-# Lock screen after 5 minutes; turn off display after another 5 minutes
-swayidle -w \
-       timeout 300 'swaylock -f -c 000000' \
-       timeout 600 'wlr-randr --output eDP-1 --off' \
-       resume 'wlr-randr --output eDP-1 --on' \
-       before-sleep 'swaylock -f -c 000000' >/dev/null 2>&1 &
+# Lock screen after 5 minutes
+#
+# Note that we do not yet support turning off displays in the context of idle
+# system power management. Disabling outputs, for example by
+# `wlr-randr --output whatever --off` re-arranges views (since a837fefc),
+# so is not a good idea.
+# A swayidle-friendly implementation may be written using
+# wlr-output-power-management-unstable-v1.xml and could then work with a client
+# such as https://git.sr.ht/~leon_plickat/wlopm
+swayidle -w timeout 300 'swaylock -f -c 000000' >/dev/null 2>&1 &