Last active
October 26, 2025 03:37
-
-
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.
This file contains hidden or 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
| # 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