Is there a way to split a single monitor in two, so that the two halves will be treated as separate monitors? This means that windows should fill half the screen when maximized. Also, gnome panels should fill half the screen.
monitor – How to Split Monitor in Two
monitorsplit
Best Answer
The accepted answer did not work for me. What has worked though was adding virtual monitors in XRandR 1.5.
To split the monitor do the following:
Enter
xrandr
into the terminal to check the output name and current resolution of the display you want to split.On my system the result was:
We can see that my monitor is connected to HDMI2 and the resolution is set to 1920x1080.
Add 2 virtual monitors with the
xrandr --setmonitor
command ensuring that they overlap with your physical display and are placed next to each other. The syntax of the command is (without quotes):For my system it was:
While the above has already configured the virtual monitors on my system the changes haven't been applied until I have executed (it seems to refresh xrandr):
To persist the changes after reboot you would want to execute these commands when you login. You can do so by appending the commands at the end of your
~/.profile
file.