diff --git a/bin/sysctl-user b/bin/sysctl-user new file mode 120000 index 0000000..4418cd8 --- /dev/null +++ b/bin/sysctl-user @@ -0,0 +1 @@ +systemctl-user \ No newline at end of file diff --git a/bin/systemctl-user b/bin/systemctl-user new file mode 100755 index 0000000..5f6bba0 --- /dev/null +++ b/bin/systemctl-user @@ -0,0 +1,11 @@ +#!/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 "$@" \ No newline at end of file