nix/module/common/bash/module/Power.sh

10 lines
98 B
Bash

# Suspend system.
function slp() {
systemctl suspend
}
# Poweroff.
function bye() {
poweroff
}