11.2 Dual monitor, dual wallpapers?

Heya :slight_smile:

I’m using a dual monitor setup (extended), everything is working as it should be.

The only thing I would like to change is, to have a different wallpaper on each screen, and not span it accross both screens.

How would I go about doing this?

T.i.a.

> I’m using a dual monitor setup (extended), everything is working as it
> should be.
>
> The only thing I would like to change is, to have a different wallpaper
> on each screen, and not span it accross both screens.
>
> How would I go about doing this?

You didn’t mention ATI or nVidia or other…
With nVidia You need to set up Twinview and Xinerama
so that the panels act as separate displays. As 1 screen
you could create a wallpaper that is really two wallpapers
spliced at whatever the ‘middle’ of your screen is.

Oh sorry, using ati but I haven’t installed the driver yet.

> Oh sorry, using ati but I haven’t installed the driver yet.

I would recommend getting the driver set up properly and configuring
them as two displays. The problem as 1 big one is that gap at the middle and
most dialogs will pop up right on it.

I’ll do that, see if I can select two wallpapers then :slight_smile:

Cheers.

> I’ll do that, see if I can select two wallpapers then :slight_smile:

I also don’t see if you are using KDE or GNOME.
If KDE, you need to right click on the monitor you want
to set the wallpaper on. Do it for each one.

I’m using gnome,

I’ve installed the ati drivers, set my displays up as "Multi-display desktop (with display 1)

It’s still trying to span the background over both screens :frowning: I can’t select the display in the Appearance preferences unfortunately.

> I’m using gnome,
>
> I’ve installed the ati drivers, set my displays up as "Multi-display
> desktop (with display 1)
>
> It’s still trying to span the background over both screens :frowning: I can’t
> select the display in the Appearance preferences unfortunately.

Sorry I can’t help you further, I don’t use Gnome or ATI.

Thanks so far though :slight_smile:

> Thanks so far though :slight_smile:

Try posting your current xorg.conf from
/etc/X11.

Maybe I can spot something.

Here you go :slight_smile:


Section "ServerLayout"
	Identifier     "aticonfig Layout"
	Screen      0  "aticonfig-Screen[0]-0" 0 0
EndSection

Section "Files"
EndSection

Section "Module"
EndSection

Section "ServerFlags"
	Option	    "Xinerama" "off"
EndSection

Section "Monitor"
	Identifier   "aticonfig-Monitor[0]-0"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection

Section "Monitor"
	Identifier   "0-DFP1"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
	Option	    "PreferredMode" "1680x1050"
	Option	    "TargetRefresh" "60"
	Option	    "Position" "1360 0"
	Option	    "Rotate" "normal"
	Option	    "Disable" "false"
EndSection

Section "Monitor"
	Identifier   "0-DFP2"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
	Option	    "PreferredMode" "1360x768"
	Option	    "TargetRefresh" "60"
	Option	    "Position" "0 282"
	Option	    "Rotate" "normal"
	Option	    "Disable" "false"
EndSection

Section "Device"

  #BusID       "PCI:1:0:0"
	Identifier  "aticonfig-Device[0]-0"
	Driver      "fglrx"
	Option	    "Monitor-DFP1" "0-DFP1"
	Option	    "Monitor-DFP2" "0-DFP2"
	BusID       "PCI:1:0:0"
EndSection

Section "Device"
	Identifier  "amdcccle-Device[1]-1"
	Driver      "fglrx"
	Option	    "Monitor-DFP1" "0-DFP1"
	BusID       "PCI:1:0:0"
	Screen      1
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]-0"
	Device     "aticonfig-Device[0]-0"
	Monitor    "aticonfig-Monitor[0]-0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Virtual   3600 3600
		Depth     24
	EndSubSection
EndSection

Section "Screen"
	Identifier "amdcccle-Screen[1]-1"
	Device     "amdcccle-Device[1]-1"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

I don’t believe with gnome you can just have 2 seperate wallpapers for each monitor. you have to use an image editor like gimp and put 2 images together as one.

For starters change “Xinerama” “off” to “on”
Save
and restart the X system.

>
> Here you go :slight_smile:
>
>
> Code:
> --------------------
>
> Section “ServerLayout”
> Identifier “aticonfig Layout”
> Screen 0 “aticonfig-Screen[0]-0” 0 0
> EndSection
>
> Section “Files”
> EndSection
>
> Section “Module”
> EndSection
>
> Section “ServerFlags”
> Option “Xinerama” “off”
> EndSection
>
> Section “Monitor”
> Identifier “aticonfig-Monitor[0]-0”
> Option “VendorName” “ATI Proprietary Driver”
> Option “ModelName” “Generic Autodetecting Monitor”
> Option “DPMS” “true”
> EndSection
>
> Section “Monitor”
> Identifier “0-DFP1”
> Option “VendorName” “ATI Proprietary Driver”
> Option “ModelName” “Generic Autodetecting Monitor”
> Option “DPMS” “true”
> Option “PreferredMode” “1680x1050”
> Option “TargetRefresh” “60”
> Option “Position” “1360 0”
> Option “Rotate” “normal”
> Option “Disable” “false”
> EndSection
>
> Section “Monitor”
> Identifier “0-DFP2”
> Option “VendorName” “ATI Proprietary Driver”
> Option “ModelName” “Generic Autodetecting Monitor”
> Option “DPMS” “true”
> Option “PreferredMode” “1360x768”
> Option “TargetRefresh” “60”
> Option “Position” “0 282”
> Option “Rotate” “normal”
> Option “Disable” “false”
> EndSection
>
> Section “Device”
>
> #BusID “PCI:1:0:0”
> Identifier “aticonfig-Device[0]-0”
> Driver “fglrx”
> Option “Monitor-DFP1” “0-DFP1”
> Option “Monitor-DFP2” “0-DFP2”
> BusID “PCI:1:0:0”
> EndSection
>
> Section “Device”
> Identifier “amdcccle-Device[1]-1”
> Driver “fglrx”
> Option “Monitor-DFP1” “0-DFP1”
> BusID “PCI:1:0:0”
> Screen 1
> EndSection
>
> Section “Screen”
> Identifier “aticonfig-Screen[0]-0”
> Device “aticonfig-Device[0]-0”
> Monitor “aticonfig-Monitor[0]-0”
> DefaultDepth 24
> SubSection “Display”
> Viewport 0 0
> Virtual 3600 3600
> Depth 24
> EndSubSection
> EndSection
>
> Section “Screen”
> Identifier “amdcccle-Screen[1]-1”
> Device “amdcccle-Device[1]-1”
> DefaultDepth 24
> SubSection “Display”
> Viewport 0 0
> Depth 24
> EndSubSection
> EndSection
>
> --------------------
>
>

> I don’t believe with gnome you can just have 2 seperate wallpapers for
> each monitor. you have to use an image editor like gimp and put 2 images
> together as one.

If this is true then my other posts are irrelevant. I have canceled them.

Sadly, multiple monitor setups remain Linux’ Achilles heel. Yes you can but it usually involves some compromise - no 3D acceleration, no rotation, no moving of windows between the screens, or any combination thereof, and then only with the aid of proprietary blobs. Not the fault of the FOSS community but a problem nonetheless. Doesn’t matter if it’s KDE or Gnome.

Agh, I’ll try the gimp workaround then :frowning:

One of the things that bugged me about windows was the way it dealth with multiple monitors :stuck_out_tongue:

Thanks for the replies!

> Sadly, multiple monitor setups remain Linux’ Achilles heel. Yes you can
> but it usually involves some compromise - no 3D acceleration, no
> rotation, no moving of windows between the screens, or any combination
> thereof, and then only with the aid of proprietary blobs. Not the fault
> of the FOSS community but a problem nonetheless. Doesn’t matter if it’s
> KDE or Gnome.

Actually I can do all of these things on my office setup.
So while it might be a challenge to do, it is not impossible.
The nVidia driver wholly supports dual monitors and KDE leverages
that ability, providing separate wallpapers and desktop settings
per monitor.

GofBorg:

OK, try this: dual monitors, one (only one: rotating both with Twinview is easy) rotated, compositing enabled, as one big screen (ie not two Xwindows). Can’t be done although it should be easy with XRandR, but NVIDIA doesn’t support it.
If you manage to do that I’ll buy you a beer next time I come to Delta Quadrant (wherever that is) :wink:

> OK, try this: dual monitors, one (only one: rotating both with Twinview
> is easy) rotated, compositing enabled, as one big screen (ie not two
> Xwindows). Can’t be done although it should be easy with XRandR, but
> NVIDIA doesn’t support it.
> If you manage to do that I’ll buy you a beer next time I come to Delta
> Quadrant (wherever that is) :wink:

So you are saying you want independent cubes for each monitor?

I am unable to decipher exactly what you are saying.

I want one desktop stretched over both monitors, as in Twinview, but with one of the monitors rotated (portrait orientation), and compositing working.
Good luck!