Managing systemd services for startup programs can be complex and tedious. To simplify the process, I created a CLI tool called `add_service` that allows you to quickly add systemd services without manually writing configuration files. Example: $ pip3 install add_service $ add_service "`which python3` -m http.server 80" --user root --name http_server Usage: add_service shell_file/cmd [--user root(default `whoami`)] [--name service_name] [--start] Feel free to use and provide suggestions. |