7 lines
No EOL
130 B
Bash
Executable file
7 lines
No EOL
130 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ $(acpi -a | awk '{print $3}') == "on-line" ]]; then
|
|
swaylock
|
|
else
|
|
systemctl suspend-then-hibernate
|
|
fi |