Sunshine script to match Linux desktop resolution to client
Project description
sunshine-res
sunshine-res is a small command‑line utility that automatically adjusts your display resolution and HDR settings to match a target resolution that your game or application expects. It works on modern Linux desktop environments that expose a standard way to query and set display modes.
Installation
You can install sunshine-res system‑wide (or inside a virtualenv) with:
pipx install sunshine-res
The tool installs a console script called sunshine-res that can be invoked from anywhere.
Usage
The utility accepts three commands:
| Command | Description |
|---|---|
do |
Set the monitor to the target resolution (as specified by the environment variables below). |
undo |
Revert the monitor to the original mode that was active before the last do. |
auto |
Toggle between the two states. If a previous do was performed, undo will be run; otherwise do will be executed. This is the default if no command is given. |
Configuring Sunshine
After installing sunshine-res, you must configure Sunshine to use the utility.
- Open Sunshine and go to the Configuration tab (probably https://localhost:47990/config)
- In the Command Preparations section, click "+ Add" to add a new command
- Set the do and undo commands to
sunshine-res doandsunshine-res undorespectively - Save
Multiple outputs
Sunshine-res will only manage the resolution of a single display output. By default, it will use the first one present reported by the relevant control tool. This is probably fine for many users, but if you have multiple displays and require specifying a particular display, you can append --target-output/-o followed by the display name reported by the appropriate command line tool for your desktop environment.
Eg.
sunshine-res --target-output HDMI-2 auto
If you are unsure of what output name to use, look at the outputs listed by the appropriate tool for your desktop environement, in the Supported Desktop Environments table.
Supersampling
Rather than having the server match the client resolution exactly, a supersampling factor can be added to instruct the server to render higher resolution images than your client and allow the client to downscale them.
This can be done by adding the --supersample option to the sunshine-res command.
Eg.
sunshine-res --supersample 1.5 auto
This would attempt to render at 1.5× the target resolution, so if the target is 1920×1080, the server would render at the nearest resolution at or greater than 2880×1620 and the client would downscale to 1920×1080. Since the client may not support arbitrary resolutions, the server will choose the closest available mode that is at least as large as the supersampled resolution.
Example
# Set resolution to 1920×1080 @ 60 Hz, HDR disabled
SUNSHINE_CLIENT_WIDTH=1920 SUNSHINE_CLIENT_HEIGHT=1080 SUNSHINE_CLIENT_FPS=60 SUNSHINE_CLIENT_HDR=false sunshine-res do
# Revert to original resolution
sunshine-res undo
# Toggle
sunshine-res
Environment variables are optional and typically set by Sunshine; defaults are:
SUNSHINE_CLIENT_WIDTH– 1920SUNSHINE_CLIENT_HEIGHT– 1080SUNSHINE_CLIENT_FPS– 60SUNSHINE_CLIENT_HDR– false
Supported Desktop Environments
| Desktop | Implementation |
|---|---|
| KDE | Uses kscreen-doctor to query and set monitor modes. |
| COSMIC | Uses cosmic-randr to query and set monitor modes. |
| Gnome | Uses gnome-randr from gnome-randr-rust to query and set monitor modes. |
The tool automatically detects the current desktop by inspecting the XDG_CURRENT_DESKTOP, XDG_SESSION_DESKTOP, or SESSION_DESKTOP environment variables. If no supported desktop is detected, the command will exit with an error.
How It Works
- Detect Desktop – The first step is to determine whether you are running KDE or Cosmic.
- Query Current Mode – The relevant command (eg.
kscreen-doctororcosmic-randr) returns a description of the current monitor configuration. - Find Matching Mode – The tool searches the available modes for one that matches the target resolution and has the closest refresh rate that is not below the requested
SUNSHINE_CLIENT_FPS. - Apply Mode – The chosen mode is applied with the same HDR setting you requested.
- Persist State – The original monitor state is written to
~/.config/sunshine/last_mode.jsonso thatundocan restore it later.
Common Errors & Troubleshooting
| Error | What it means | How to fix |
|---|---|---|
ERROR: Could not determine current desktop |
No desktop environment variable was found. | Make sure you are running the command from an active session. On some shells you may need to export XDG_CURRENT_DESKTOP=KDE or COSMIC manually. |
Could not find resolution manager for desktop <name> |
The desktop variable contains an unsupported value. | Check the spelling of the desktop name. Supported values are KDE and COSMIC and GNOME. |
Did not find mode matching <width>x<height> at <output> |
The monitor does not advertise the requested resolution. | Verify that the resolution is supported by your monitor or try a different resolution. |
Could not identify current mode |
The underlying command returned an unexpected format. | Ensure cosmic-randr, gnome-randr, or kscreen-doctor is installed and working. Run the command manually (cosmic-randr list --kdl, gnome-randr, or kscreen-doctor --json) to confirm. |
Permission denied |
The command was unable to write to ~/.config/sunshine/last_mode.json. |
Verify that you have write permissions to ~/.config/sunshine. |
If you encounter an unhandled exception, try running the command with the -v flag (if implemented) or inspect the stack trace. The project is open source, so feel free to file an issue.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sunshine_res-1.0.0.tar.gz.
File metadata
- Download URL: sunshine_res-1.0.0.tar.gz
- Upload date:
- Size: 10.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.14.2 Linux/5.15.0-164-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62882fc2437ecf86476c5f25f06ec501cf144351881cd3515a7419ddb5065196
|
|
| MD5 |
51b04638120f81433deb944ba8911c35
|
|
| BLAKE2b-256 |
df0e4e11145f710d270be9f1fa268e129335c6cfb253daa7c1e5abe62be2d3d7
|
File details
Details for the file sunshine_res-1.0.0-py3-none-any.whl.
File metadata
- Download URL: sunshine_res-1.0.0-py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.14.2 Linux/5.15.0-164-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4ecac416aff7b890d78c115e0aeeb75b0e16c36e36f4d89961d3f2b8143fffd
|
|
| MD5 |
e7860839ec08d78dabc9faa014648be4
|
|
| BLAKE2b-256 |
49d92ebae94853d7bc0d91b41a14daa85c99485d79641add671448fa13e44d0f
|