• 48 Posts
  • 337 Comments
Joined 1 year ago
cake
Cake day: June 22nd, 2023

help-circle

  • Gaming on linux is not that bad today. Look at valve’s success with the steamdeck. All past and present issues are because developers were aiming to a different platform, with proprietary tooling.

    In meme terms, is like Fender made the guitars for people with different hands. You can’t play, but it’s their fault.






















  • Create a user, and then a systemd unit for it, under ~/.config/systemd/user/ with contents like these:

    [Unit]
    Description=Caddy web server
    After=network.target
    
    [Service]
    ExecStart=/usr/local/bin/caddy run --config /path/to/Caddyfile --envfile /path/to/Envfile
    ExecReload=/usr/local/bin/caddy reload --config /path/to/Caddyfile --envfile /path/to/Envfile
    Restart=on-failure
    User=caddy
    Group=caddy
    
    [Install]
    WantedBy=default.target
    

    Adjust the paths in the arguments. It will require systemctl daemon-reload for such unit to be available for enabling and starting it…