Skip to content

Commit 87c8122

Browse files
committed
port over current wiki files
1 parent 34227e3 commit 87c8122

2 files changed

Lines changed: 119 additions & 0 deletions

File tree

docs/v2/Advanced Preferences.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
To enable Advanced Preferences for monitors, toggle the "Show advanced settings under Displays" checkbox in the General Preferences and go to the Displays tab, where you'll now see advanced preferences for each display.
2+
3+
Inside the advanced preferences you can experiment and modify some more advanced settings.
4+
Not all monitors are the same and some are better at implementing the [DDC/CI spec](https://en.wikipedia.org/wiki/Display_Data_Channel) than others.
5+
6+
## Polling Mode
7+
8+
Sets the amount of times MonitorControl will try polling the display.
9+
Polling the display essentially means that it tries to read information from the display.
10+
This can sometimes be unreliable and thus MonitorControl will try reading these values multiple times to increase success rates.
11+
Polling is used for reading current display volume and brightness values, which happens on app launch or when
12+
coming out of sleep mode.
13+
Because we try to read the values multiple times (for example, 10 tries for volume and 10 tries for brightness on `Normal` mode), it can cause some slowdown on your system. The different polling modes indicate a different amount of times we try to poll the display for information.
14+
15+
### Polling Modes:
16+
17+
- None: 0 tries
18+
- Minimal: 5 tries
19+
- Normal: 10 tries (default)
20+
- High: 100 tries
21+
- Custom: X tries (selecting this will allow you to set the polling count yourself in the `Polling Count` text field.)
22+
23+
In case the display is still unable to read the values through DDC (or you selected `None`), the last known values will be used instead.
24+
25+
**If you experience significant system slowdown when coming out of sleep mode or at startup, try lowering or disabling the Polling Mode setting.**
26+
27+
## Longer Delay
28+
29+
Some displays will require a longer `minReplyDelay` (referred to as `Longer Delay` in settings) to be able to read display information more reliably. This depends on a combination of different factors like Cable, Monitor, GPU.
30+
31+
If it takes a long time to read your volume and brightness settings, you can try enabling the `Longer Delay` settings to improve reliability. However, please be aware that this setting will not work for every system and **may cause your system to freeze after enabling it. Please use this at your own risk.**
32+
As a safety measure, automatic app startup will be disabled.
33+
34+
## Hide OSD
35+
36+
Tries to hide your display's native OSD (On-Screen Display) when changing volume or brightness.
37+
This setting also depends on your monitor, so it may not work properly on every monitor.

docs/v2/Monitor Troubleshooting.md

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
We often get issues like:
2+
_"MonitorControl doesn't work with my monitor"_,
3+
so here are some troubleshooting steps and general information to try and help you.
4+
5+
# General Information
6+
7+
- MonitorControl **doesn't work with every monitor**, it all depends on how well your display/cable manufacturer implements the [DDC/CI spec](https://en.wikipedia.org/wiki/Display_Data_Channel).
8+
- Some displays will only support certain features well (for example, they work well with brightness but not volume).
9+
- It also depends a lot on your [hardware combination](https://github.com/the0neyouseek/MonitorControl/issues/82).
10+
11+
# Troubleshooting
12+
13+
## I can't control volume/brightness
14+
15+
### Check if your monitor OSD has a setting for DDC
16+
17+
Some monitors have a ddc settings that can be enabled/disabled, make sure you check if your specific monitor has this setting and if it does, you should ensure DDC is enabled.
18+
19+
### Try a different ddc tool
20+
21+
You can try a different ddc tool called [ddcctl](https://github.com/kfix/ddcctl) for Intel Macs.
22+
23+
For Apple Silicon macs you can try [m1ddc](https://github.com/waydabber/m1ddc)
24+
25+
This can help us isolate issues with MonitorControl vs other tools.
26+
27+
If your setup works with ddcctl or m1ddc it should also work with MonitorControl.
28+
29+
After installing ddcctl, try something like:
30+
31+
```sh
32+
./ddcctl -d 1 -v 30
33+
```
34+
35+
or for m1ddc:
36+
37+
```sh
38+
./m1ddc set volume 30
39+
```
40+
41+
(tries to set the volume of display 1 to value 30)
42+
or
43+
44+
```sh
45+
./ddcctl -d 1 -b 30
46+
```
47+
48+
or for m1ddc:
49+
50+
```sh
51+
./m1ddc set brightness 30
52+
```
53+
54+
(tries to set the brightness of display 1 to value 30)
55+
56+
If these commands change your brightness or volume, you know that your display supports ddc (or at least the command that worked).
57+
58+
### Try a different cable
59+
60+
Generally, people seem to have the highest success rates with DisplayPort and the lowest with HDMI.
61+
62+
### Known incompatibilities
63+
64+
Mac Minis made after 2018 (including the M1 Mini) have trouble supporting DDC via the built-in HDMI port. Use the USB-C/Thunderbolt port instead!
65+
66+
## I can't get accurate read values from the monitor
67+
68+
If the monitor is unable to read values from the display, it will default to the last known values.
69+
70+
To try and fix this, you can try checking the `Longer Delay` option in Advanced Preferences under Displays (requires enabling advanced preferences).
71+
See the [Advanced Preferences](https://github.com/the0neyouseek/MonitorControl/wiki/Advanced-Preferences#longer-delay) wiki page for more information.
72+
73+
## The app is slow on startup
74+
75+
This is usually because we poll the display to try and read its current volume/brightness on app launch.
76+
77+
You can lower or disable the `Polling Mode` in Advanced Preferences under Displays (requires enabling advanced preferences).
78+
See the [Advanced Preferences](https://github.com/the0neyouseek/MonitorControl/wiki/Advanced-Preferences#polling-mode) wiki page for more information.
79+
80+
## I get screen flickering when launching MonitorControl
81+
82+
This can be caused due to trying to poll (read) values from your display multiple times. Try setting `Polling Mode` to none in Advanced Preferences under Displays (requires enabling advanced preferences).

0 commit comments

Comments
 (0)