diff options
author | Benjamin Cheng <[email protected]> | 2020-07-03 17:59:52 -0400 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-07-04 08:46:12 +0000 |
commit | a573c8cd47c33ae70c310232de1ce6b0acc56a7e (patch) | |
tree | ee590f0c25aab26087ea370f80e4d12fc5263616 | |
parent | 19f3c79c7ed4e68d37771489f52bd94a2d032fa6 (diff) |
drirc: Add picom to adaptive_sync exclusion list
The compton compositor is unmaintained, with a new fork named picom taking
its place. As with the other compositors (including compton), adaptive
sync should not be enabled.
Reviewed-by: Eric Engestrom <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5740>
-rw-r--r-- | src/util/00-mesa-defaults.conf | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util/00-mesa-defaults.conf b/src/util/00-mesa-defaults.conf index ddc65a21fe8..55c85e3477e 100644 --- a/src/util/00-mesa-defaults.conf +++ b/src/util/00-mesa-defaults.conf @@ -509,6 +509,9 @@ TODO: document the other workarounds. <application name="compton" executable="compton"> <option name="adaptive_sync" value="false" /> </application> + <application name="picom" executable="picom"> + <option name="adaptive_sync" value="false" /> + </application> <application name="xfwm4" executable="xfwm4"> <option name="adaptive_sync" value="false" /> </application> |