Add status message, make colors nice and add auto start instructions.

This commit is contained in:
2022-07-10 19:18:01 -04:00
parent b69d426d85
commit c3b9e9c067
5 changed files with 48 additions and 17 deletions

View File

@@ -2,3 +2,20 @@
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
```