Created
May 4, 2020 15:28
-
-
Save jepler/3304c863f042d6fe49287b519c4d8a1c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Description: Disable xfce manipulation of xrandr | |
This disables all(?) xfce manipulation of XRANDR settings. Instead, | |
the settings can be manipulated by commandline. | |
. | |
e.g., | |
. | |
xrandr --output DisplayPort-0 --right-of HDMI-A-0 --fb 5120x1440 | |
. | |
This is a heavy-handed approach but it fixes problems for me when | |
power-management causes monitors to "appear" and "disappear". | |
I only tested for a short time. | |
. | |
xfce4-settings (4.12.4-1.1) UNRELEASED; urgency=medium | |
. | |
* Non-maintainer upload. | |
* Disable setting screen size | |
Author: <[email protected]> | |
Last-Update: 2020-05-04 | |
--- xfce4-settings-4.12.4.orig/xfsettingsd/displays.c | |
+++ xfce4-settings-4.12.4/xfsettingsd/displays.c | |
@@ -203,6 +203,11 @@ xfce_displays_helper_class_init (XfceDis | |
static void | |
xfce_displays_helper_init (XfceDisplaysHelper *helper) | |
{ | |
+ g_critical ("RANDR disabled in source. Display settings won't be applied.", | |
+ gdk_display_get_name (helper->display)); | |
+ | |
+ return; | |
+ | |
gint major = 0, minor = 0; | |
gint error_base, err; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment