An open API service indexing awesome lists of open source software.

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

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`