10 lines
98 B
Bash
10 lines
98 B
Bash
# Suspend system.
|
|
function slp() {
|
|
systemctl suspend
|
|
}
|
|
|
|
# Poweroff.
|
|
function bye() {
|
|
poweroff
|
|
}
|