Power : Add bye & slp shortcuts for bash.

This commit is contained in:
Dmitry Voronin 2024-03-28 12:52:30 +03:00
parent 0007c0a07d
commit 5bba624378

View file

@ -0,0 +1,9 @@
# Suspend system.
function slp() {
systemctl suspend
}
# Poweroff.
function bye() {
poweroff
}