mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
11 lines
289 B
Bash
Executable File
11 lines
289 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Wake displays and restore brightness after idle
|
|
# omarchy:group=system
|
|
# omarchy:name=wake
|
|
# omarchy:examples=omarchy system wake
|
|
|
|
hyprctl dispatch dpms on >/dev/null 2>&1
|
|
brightnessctl -r >/dev/null 2>&1
|
|
brightnessctl -rd '*::kbd_backlight' >/dev/null 2>&1
|