diff options
author | Marcin Chrzanowski <m@m-chrzan.xyz> | 2021-07-30 19:43:11 +0200 |
---|---|---|
committer | Marcin Chrzanowski <m@m-chrzan.xyz> | 2021-07-30 19:43:11 +0200 |
commit | 01e06cdcffdb01f9018798414ad580896bcb8544 (patch) | |
tree | 05801b4d8d3930a54a4bda9153bcde478d690915 | |
parent | a325b65cf91605f054c18ad80c3f148ce0d2e6d6 (diff) |
Add DPMS info
-rw-r--r-- | display.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/display.md b/display.md new file mode 100644 index 0000000..d66e07f --- /dev/null +++ b/display.md @@ -0,0 +1,23 @@ +# Display management + +## DPMS + +Display Power Management Signaling controls power saving features on displays. + +Query current settings: + + xset q + +Turn DPMS on/off: + + xset -dpms # screen will not timeout + xset dpms + +Force screen poweroff: + + xset dpms force off + xset dpms force standby + xset dpms force suspend + +Off/standby/suspend are different power-off modes. They have trade-offs in power +consumption vs. time to restart. |