* Better system idle * Just use refresh Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
11 lines
297 B
Bash
Executable File
11 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Resume displays and brightness after idle
|
|
# omarchy:group=system
|
|
# omarchy:name=idle resume
|
|
# omarchy:examples=omarchy system idle resume
|
|
|
|
hyprctl dispatch dpms on >/dev/null 2>&1
|
|
brightnessctl -r >/dev/null 2>&1
|
|
brightnessctl -rd '*::kbd_backlight' >/dev/null 2>&1
|