We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17ee987 commit 767d18bCopy full SHA for 767d18b
src/hhd/plugins/overlay/base.py
@@ -65,6 +65,7 @@ def standby_transition(state: str):
65
return
66
67
with open("/sys/power/standby", "w") as f:
68
+ logger.info(f"Setting standby state to '{state}'.")
69
f.write(state)
70
except Exception as e:
71
logger.error(f"Failed to set standby state to {state}:\n{e}")
@@ -214,7 +215,7 @@ def loop_manage_overlay(
214
215
s = wake_handler()
216
if s == "entry":
217
set_dpms(disp, True)
- standby_transition("screen_off")
218
+ standby_transition("sleep")
219
dpms_time = start
220
logger.info("Enabling gamescope DPMS.")
221
wake_handler.inhibit(False)
0 commit comments