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.
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.
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.It seems compiz has support for this. Under "General Options" in CompizConfig, on the "Display Settings" tab, it is possible to manually specify the "monitors" to use for maximizing windows. There is an issue with Adobe Flash and fullscreen, but overall it works quite well.
Since my graphics card merges three monitors into a single large one, this is very useful
Step by step instructions:
sudo apt-get install compizconfig-settings-manager
and press enter. Fill out your password when requested. No asterisks will be displayed when entering the password.WIDTHxHEIGHT+X+Y
.Sample configuration for three classic 19-inch monitors in a horizontal row:
This is fundamentally impossible in X11 architecture unless you rewrite the video drivers. I know this from bitter experience.
The only way you could do is by running multiple windowed virtual desktops (ie vnc or xnest/xephyr) in borderless windows. You'll then lose all graphics acceleration.
You might try using a tiling window manager.
KDE supports limited tiling out of the box. It will allow you to split you screen into two halves, though.
On the other end of the spectrum are Xmonad and Awesome. These are more difficult to set up, but some people swear by them. I used Xmonad for a long time and you get very adept at keyboard navigation. Reducing mouse usage, is the reason most people switch in the first place. I now use KDE because a few programs I use regularly don't tile very well and were a pain to use in Xmonad.
A happy medium might be to replace Gnome's window manager with Xmonad if you are a Gnome user.