mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2024-11-12 17:42:24 +00:00
11 lines
266 B
Text
11 lines
266 B
Text
|
#!/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 "$@"
|