https://github.com/jaypyles/axdd
Another Xrandr Display Daemon
https://github.com/jaypyles/axdd
Last synced: about 2 months ago
JSON representation
Another Xrandr Display Daemon
- Host: GitHub
- URL: https://github.com/jaypyles/axdd
- Owner: jaypyles
- Created: 2023-11-30T00:59:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-06T04:41:01.000Z (over 2 years ago)
- Last Synced: 2025-07-02T13:52:29.338Z (12 months ago)
- Language: Rust
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Summary
A simple tool to be used with systemd to create a daemon which recognizes display switching.
## Systemctl Configuration
Setup a config file at `~/.config/systemd/user/axdd.service`
```bash
[Unit]
Description=axdd
After=network.target
[Service]
ExecStart=/home/user/axdd
Restart=no
[Install]
Alias=axdd.service
WantedBy=multi-user.target
```
`systemctl --user daemon-reload`
`systemctl --user enable axdd.service`
`systemctl --user start axdd.service`