mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2024-11-10 00:59:38 +00:00
11 lines
No EOL
266 B
Bash
Executable file
11 lines
No EOL
266 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# A wrapper script as an alias for calling "systemctl --user"
|
|
|
|
if [[ $1 == "" ]]; then
|
|
echo "Usage: $0 command..."
|
|
echo "For more information on how to use systemctl on userspace, see man:systemctl(1)"
|
|
exit 1
|
|
fi
|
|
|
|
exec systemctl --user "$@" |