Phillip Berndt
Phillip Berndt
Sure! Feel free to open a PR if you find the time.
No, you can't. You can however copy the generated libXrandr.so to any directory, create the symlinks manually, and add the directory to your library search path by adding `export LD_LIBRARY_PATH=/full/path`...
Does xfwm4 place other windows correctly onto one side of the screen, or does it also center them? That is, is the dock the only problem? What happens if you...
If your fork is old, it probably does not include a fake xinerama yet, on which some applications rely. Try to copy the code from the bottom of the file...
Yes, though you'll have to patch it to unconditionally add the fake outputs, and not only if there's a CRT with the correct resolution present. Note that this library currently...
[`config_handle_output`](https://github.com/phillipberndt/fakexrandr/blob/master/libXrandr.c#L192) is called [for each output that has an edid](https://github.com/phillipberndt/fakexrandr/blob/master/libXrandr.c#L365). Outputs themselves are then added by [`_config_foreach_split`](https://github.com/phillipberndt/fakexrandr/blob/master/libXrandr.c#L101). Alternatively, use the [version with hard-coded splits](https://github.com/phillipberndt/fakexrandr/blob/hard_coded_splits/libXrandr.c) - it is much more straightforward...
Fakexrandr relies on an identifier of each monitor (the so called EDID) to detect when to split an output. The virtual device does not have an EDID, hence the issues....
It shouldn't matter whether you're using SDDM or another login manager. The relevant question is which *window manager* you're using. KDE, probably?! I strongly suspect that this is related to...
Does the output of `fakexrandr-manage.py show-available` change when you reconnect the main display? Did you configure the tool with or without the main display connected?
What happens if you try to reenable the screen using ``` xrandr --output DP2 --mode 3840x1080 --rate 50 --primary --output LVDS1 --off && sleep 15 && xrandr --output DP2 --mode...