Skip to content

Instantly share code, notes, and snippets.

@SourLemonJuice
Last active October 26, 2025 03:37
Show Gist options
  • Save SourLemonJuice/07ca3d0a66194110dfe4c45229320c1c to your computer and use it in GitHub Desktop.
Save SourLemonJuice/07ca3d0a66194110dfe4c45229320c1c to your computer and use it in GitHub Desktop.
An example systemd user unit for activate-linux, make this watermark autostart. It's really funny, haha.
# put it in: /etc/systemd/user/
# and reload units(run as user self): systemctl --user daemon-reload
# use for: https://github.com/MrGlockenspiel/activate-linux
#
# that reminds me of this: https://github.com/USSURATONCACHI/activate-linux-toggle
# well, I don't like that "toggle", you can use `systemctl --user <operation> <unit-name>` to control any user unit.
[Unit]
Description=Activate Windows Watermark on Linux
After=graphical-session.target
[Service]
Type=simple
# it's more fun with this flag(if you have windows font): --text-font "Segoe UI"
ExecStart=/usr/bin/activate-linux
[Install]
WantedBy=graphical-session.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment