Skip to content

Instantly share code, notes, and snippets.

@sc0tt
Created November 13, 2019 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sc0tt/5bd613bcb2ea77255a51b20dcdc932ea to your computer and use it in GitHub Desktop.
Save sc0tt/5bd613bcb2ea77255a51b20dcdc932ea to your computer and use it in GitHub Desktop.
Lounge Service
# Save this file as:
# /etc/systemd/system/lounge.service
#
# Then run:
# systemctl enable lounge.service
#
# Then run:
# systemctl start lounge
#
# If something isn't working or you want to make sure it is working, you can see the output by running:
# systemctl status lounge
[Unit]
Description=The Lounge Server
After=network.target
[Service]
Type=simple
User=<your username here>
Group=<your username here>
Environment=THELOUNGE_HOME=/home/<your username here>/.thelounge
WorkingDirectory=/home/<your username here>
ExecStart=/usr/local/bin/thelounge start # Change the patch to thelounge executable if different or change the command if different.
Restart=always
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment