mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2026-03-20 07:47:54 +01:00
12 lines
278 B
Bash
Executable File
12 lines
278 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# An attempt to not repeat myself with commands I return to constantly
|
|
|
|
_inhibitshutdowncmd() {
|
|
if hash systemd-inhibit 2> /dev/null; then
|
|
systemd-inhibit --what shutdown --who "$INHIBITWHO" --why "$INHIBITWHO blocks shutdown/reboot" $@
|
|
else
|
|
$@
|
|
fi
|
|
}
|