Personal dotfiles for Linux, mostly for Nixpkgs/NixOS-based and Termux setups. Mirrored using GitLab's push mirroring feature. gitlab.com/andreijiroh-dev/dotfiles
linux dotfiles
at pre-nixpkgs/main 11 lines 266 B view raw
1#!/usr/bin/env bash 2 3# A wrapper script as an alias for calling "systemctl --user" 4 5if [[ $1 == "" ]]; then 6 echo "Usage: $0 command..." 7 echo "For more information on how to use systemctl on userspace, see man:systemctl(1)" 8 exit 1 9fi 10 11exec systemctl --user "$@"