Last active
July 8, 2022 16:46
-
-
Save iiiGerardoiii/8467cb7325f225f8bd7a5a63a74cf78f to your computer and use it in GitHub Desktop.
To run thelounge on boot. More here https://github.com/thelounge/thelounge/wiki/Use-Systemctl-to-run-The-Lounge-as-a-Systemd-Service-on-Linux-(debian-and-CentOS-based-distros)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=The Lounge IRC client | |
After=thelounge.service | |
[Service] | |
Type=simple | |
ExecStart=/home/pi/.yarn/bin/thelounge start | |
User=pi | |
Group=pi | |
Restart=on-failure | |
RestartSec=5 | |
StartLimitInterval=60s | |
StartLimitBurst=3 | |
[Install] | |
WantedBy=default.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment