Select the types of activity you want to include in your feed.
Personal dotfiles for Linux, mostly for Nixpkgs/NixOS-based and Termux setups. Mirrored using GitLab's push mirroring feature.
gitlab.com/andreijiroh-dev/dotfiles
···11+#!/usr/bin/env bash
22+33+# A wrapper script as an alias for calling "systemctl --user"
44+55+if [[ $1 == "" ]]; then
66+ echo "Usage: $0 command..."
77+ echo "For more information on how to use systemctl on userspace, see man:systemctl(1)"
88+ exit 1
99+fi
1010+1111+exec systemctl --user "$@"