22 lines
340 B
Markdown
22 lines
340 B
Markdown
# AntiDrift
|
|
|
|
Utilize your computer purposefully.
|
|
|
|
## Autostart with systemd
|
|
|
|
- Create `~/.config/systemd/user/antidrift.service`
|
|
- Add configuration below and save
|
|
- Run `systemctl --user enable antidrift.service`
|
|
|
|
```
|
|
[Unit]
|
|
Description=AntiDrift
|
|
|
|
[Service]
|
|
ExecStart=/home/felixm/dot/bin/antidrift
|
|
|
|
[Install]
|
|
WantedBy=default.target
|
|
```
|
|
|