Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kenbell/reschange
Daemon to handle monitor resolution changes
https://github.com/kenbell/reschange
Last synced: about 2 months ago
JSON representation
Daemon to handle monitor resolution changes
- Host: GitHub
- URL: https://github.com/kenbell/reschange
- Owner: kenbell
- Created: 2021-06-15T20:55:19.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-06-16T01:14:17.000Z (over 3 years ago)
- Last Synced: 2024-10-13T08:13:21.862Z (3 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# reschange
Daemon to handle monitor resolution changesSome wide-screen monitors support picture-by-picture mode where the output of two computers can be shown side-by-side.
When this happens, the monitor EDID is updated to be half the width. However, currently wayland does not detect the
resolution change, so instead the monitor shows the full wide-screen image shrunk by 50%.This repo contains a systemd daemon that periodically tells the kernel to re-detect the monitor resolution.
When a resolution change is discovered, it turns the monitor off and on again briefly. Wayland then reacts as if the
monitor was disconnected and reconnected, discovering the new resolution correctly.## Build
To create the .deb packagem run `make`## Install
To install the .deb package, run `make install`The package installs a systemd service `reschange`, use these commands to control:
```
systemctl status reschange # current status
systemctl start reschange # start the service
systemctl enable reschange # auto start the service on boot
```