mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
34 lines
699 B
Bash
Executable File
34 lines
699 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Lock the computer and turn off the display
|
|
# omarchy:group=system
|
|
# omarchy:name=lock
|
|
# omarchy:examples=omarchy system lock
|
|
|
|
if ! pidof hyprlock >/dev/null; then
|
|
(
|
|
hyprlock
|
|
omarchy-system-wake
|
|
) &
|
|
fi
|
|
|
|
# Set keyboard layout to default (first layout)
|
|
hyprctl switchxkblayout all 0 > /dev/null 2>&1
|
|
|
|
# Ensure 1password is locked
|
|
if pgrep -x "1password" >/dev/null; then
|
|
1password --lock &
|
|
fi
|
|
|
|
# Avoid running screensaver when locked
|
|
pkill -f org.omarchy.screensaver
|
|
|
|
if [[ ${OMARCHY_LOCK_ONLY:-false} != "true" ]]; then
|
|
(
|
|
sleep 3
|
|
pidof hyprlock >/dev/null || exit 0
|
|
omarchy-brightness-keyboard off
|
|
omarchy-brightness-display off
|
|
) &
|
|
fi
|