[dual screen] 2 different configs in fluxbox

Hi there.
I'm running on fluxbox, but I've a little issue when I'm using an external monitor, my fluxbox configuration is reset, but only my taskbar.. I don't understand why, on the 2 display it's the same user, the same system....
Thanks in advance

Hi mate,
no, its impossible that a dual core CPU has two different cores. I think its rather a software bug which displays the model not correctly. To fix this there is some bugfix from microsoft which should be availble on the microsoft website.
You can also try to update your chipset drivers from the www.intel.com website.
But physically its impossible because the cores are on the same processor casing, so I dont think that intel would sell CPUs with different cores. :)
Greets

Similar Messages

  • What options do I have if I want to set up a dual screen?

    I have a Thinkpad T400 with a ATI Radeon HD3470 card. I am running the latest Arch x86_64 with Fluxbox and the 9.4 Catalyst drivers.
    What is the easiest solution to set up a dual screen? Is there a way to do this without editing xorg.conf? Not that editing xorg.conf really is a big problem, but I will be moving around a bit and finding the correct settings for each screen would take some work. And I would like to see how far the dual screen development has come on GNU/Linux.
    The way I see it the best way would be to have two screens with separate resolutions. Since LCD screens do not handle resolutions other then the native very well. So just stretching the screen makes the slave screen run the same height as the parent screen. Or am I wrong? It is not a problem running stretched if the screens run at the native resolution.
    So, xrandr just gives me stretching. And the need of editing xorg.conf.
    What about Twinview(just for nVidia) and Xinerama?
    Is there other solutions?
    SOLUTIONS:
    There is arandr and lxrandr, both frontends to xrandr. Requires minimal xorg.conf editing. Only add a virtual line in the screen section. The virtual size does not have to be accurate, it only have to be bigger then the screens together. In my case, I have a 1440x900 primary screen and at most a 1280x1024 secondary screen. So my virtual size would be minimum 2720x1024. This is with the screens side by side. If the screens is one above the other it would be 1440x1924.
    The exact size of the monitor is handled by xrandr(arandr or lxrandr). So, there will be no dead zone in the width(side by side solution), if the real height is different on the screen there will be a dead zone in height.
    Using arandr or lxrandr means that you manually have to set this up each time the computer is restarted. To automate this, you can use xrandr. First do a
    # xrandr
    Screen 0: minimum 320 x 200, current 2464 x 900, maximum 2720 x 1024
    LCD connected 1440x900+0+0 (normal left inverted right x axis y axis) 304mm x 190mm
    1440x900 50.0*+ 60.2
    1152x864 60.0 50.0
    1280x768 59.9 50.0
    1280x720 60.0 50.0
    1024x768 60.0 50.0
    800x600 60.3 50.0
    720x480 60.0 50.0
    640x480 60.0 50.0
    640x400 59.9 50.0
    512x384 60.0 50.0
    400x300 60.7 50.0
    320x240 60.0 49.9
    320x200 60.1 50.0
    DFP1 disconnected (normal left inverted right x axis y axis)
    CRT1 connected 1024x768+1440+0 (normal left inverted right x axis y axis) 304mm x 228mm
    1024x768 60.0*+ 75.0 70.1 60.0*
    800x600 72.2 75.0 70.0 60.3 56.2
    720x480 60.0
    640x480 75.0 72.8 75.0 60.0
    640x400 75.1 59.9
    512x384 60.0 74.9
    400x300 75.0 60.7
    320x240 75.6 60.0
    320x200 75.5 60.1
    to find out where the screens are connected. Mine are LCD and CRT1. Then test with
    # xrandr --output CRT1 --right-of LCD
    to see if you get a stretched desktop. If this works, just add the last line to your .xinitrc
    This solution gives you stretching.
    My complete xorg.conf
    # Copyright 2004 The X.Org Foundation
    Section "ServerLayout"
    Identifier "Laptop"
    Screen 0 "Default" 0 0
    EndSection
    Section "ServerFlags"
    Option "AutoAddDevices" "True"
    EndSection
    Section "Monitor"
    Identifier "LCD"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "radeon_hd"
    Driver "fglrx"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "Default"
    Device "radeon_hd"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1440x900" "1024x768"
    Virtual 2720 1024
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    Last edited by orjanp (2009-05-01 09:33:55)

    I have an ATI Mobility x1600 on my laptop,and I use a separate CRT monitor as second output (well primary until I fix my backlight)
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    Screen 1 "Screen1" RightOf "Screen0"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "USB Mouse" "CorePointer"
    EndSection
    Section "ServerFlags"
    Option "AllowMouseOpenFail" "true"
    Option "AutoAddDevices" "False"
    Option "DontZap" "False"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc:unscaled"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/PEX"
    FontPath "/usr/share/fonts/cyrillic"
    FontPath "/usr/share/fonts/local"
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/ttf/western"
    FontPath "/usr/share/fonts/ttf/decoratives"
    FontPath "/usr/share/fonts/truetype"
    FontPath "/usr/share/fonts/truetype/openoffice"
    FontPath "/usr/share/fonts/truetype/ttf-bitstream-vera"
    FontPath "/usr/share/fonts/latex-ttf-fonts"
    FontPath "/usr/share/fonts/defoma/CID"
    FontPath "/usr/share/fonts/defoma/TrueType"
    EndSection
    Section "Module"
    Load "ddc"
    Load "drm"
    Load "dbe"
    Load "dri"
    Load "extmod"
    Load "glx"
    Load "bitmap"
    Load "freetype"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "keyboard"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us"
    Option "XkbVariant" ""
    EndSection
    Section "InputDevice"
    Identifier "USB Mouse"
    Driver "mouse"
    Option "Device" "/dev/input/mice"
    Option "SendCoreEvents" "true"
    Option "Protocol" "IMPS/2"
    Option "ZAxisMapping" "4 5"
    Option "Buttons" "5"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    Option "DPMS" "No"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    Option "DPMS" "No"
    ModeLine "1024x768" 44.9 1024 1032 1208 1264 768 768 776 817 +hsync +vsync Interlace
    ModeLine "1024x768" 65.0 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
    ModeLine "1024x768" 75.0 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
    ModeLine "1024x768" 78.8 1024 1040 1136 1312 768 769 772 800 +hsync +vsync
    ModeLine "1024x768" 94.5 1024 1072 1168 1376 768 769 772 808 +hsync +vsync
    ModeLine "1280x1024" 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
    ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
    ModeLine "1280x1024" 157.5 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync
    ModeLine "1024x768" 113.31 1024 1096 1208 1392 768 769 772 814 -HSync +Vsync
    ModeLine "1280x1024" 190.96 1280 1376 1520 1760 1024 1025 1028 1085 -HSync +Vsync
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "ati"
    VendorName "ATI Technologies Inc"
    BoardName "M56P [Radeon Mobility X1600]"
    BusID "PCI:1:0:0"
    Option "AGPMode" "4"
    Option "ColorTiling" "on"
    Option "AccelMethod" "EXA"
    Option "AGPFastWrite" "yes"
    Option "DRI" "on"
    Screen 0
    Option "DDCMode" "True"
    Option "MonitorLayout" "LVDS,CRT"
    EndSection
    Section "Device"
    Identifier "Card1"
    Driver "ati"
    VendorName "ATI Technologies Inc"
    BoardName "M56P [Radeon Mobility X1600]"
    BusID "PCI:1:0:0"
    Option "AGPMode" "4"
    Option "ColorTiling" "on"
    Option "AccelMethod" "EXA"
    Option "AGPFastWrite" "yes"
    Option "DRI" "on"
    Screen 1
    Option "DDCMode" "True"
    Option "MonitorLayout" "LVDS,CRT"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1280x800" "1024x768"
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Card1"
    Monitor "Monitor1"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1024x768"
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    Section "Extensions"
    Option "Composite" "false"
    EndSection
    This works, and I get separate resolutions on the monitors. I tried using radeonhd but then the resolution on teh second monitor goes to some crappy values(which I figure are calculated proportionally to the 1280x800 one).

  • Dual screen wallpaper in Awesome

    Hey,
    Not sure it's the right place to ask but here goes..
    I'm using Arch with the Awesome WM. I have a dual screen setup where both screens share the same Awesome config (so, ONE screen {} in .awesomerc).
    I set the wallpaper with feh by adding "eval `cat $HOME/.fehbg` &" to .xinitrc and my problem is that it only sets the wallpaper on my primary screen.
    What I want is two different wallpapers on two different screens/monitors. How is this done?
    Also, I'm able to set the wallpapers in both screens by manually running "feh --bg-center file1.jpg" in one and "feh --bg-center file2.jpg" in the other one.
    Last edited by atc (2008-06-18 14:13:13)

    -- For others who stumble upon this like I did --
    **In the code, for more than two monitors, switch statements might be cleaner
    If you don't want to install another application, you can apparently with beautiful/gears:
    -- {{{ Wallpaper
    if beautiful.wallpaper then
        for s = 1, screen.count() do
            --gears.wallpaper.maximized(beautiful.wallpaper, s, true)
            if s < 2 then
              gears.wallpaper.maximized("path_to_image_one", s, true)
            else
              gears.wallpaper.maximized("path_to_image_two", s, true)
            end
        end
    end

  • New mac user, IMac with thunderbolt dual screen no longer works

    Hi, I have just started using a mac for work and was loving my new dual screen setup. it was functional for a day and now the second screen is black and saying I should check the signal cable. I have
         Tried other DVI cables that go from thunderbolt to screen
         tried 3 screens, one of them from a different brand
         I have updated firmware
         and restarted / shutdown/ disconnected device then reconnect about 10 times
         and pressed detect displays about 20 times (it seems to detect the screen, its just not sending it anything?)
         before the screen stopped I had to do a restart for the latest Itunes and mac updates
    but to no response. please help my productivity is really reduced

    Take a look at these links,
    http://support.apple.com/kb/HT4744
    http://support.apple.com/kb/TS3775

  • External monitor simply not working - including with external dock (dual screen)

    I can't get the external monitor (aka dual screen) to work on my T60 via the VGA port. My model is currently running Windows XP and has a ATI Radeon X1300 video card.
    I'm 6 months out of warantee (although this problem started while in warantee but I can't convince Lenovo of that).
    I've tried the following:
    - ensuring "extend my monitor onto this desktop" in windows display properties
    - disabling/enabling Presentation Director and trying all the schemes
    - setting all different combinations of modes for resolution/colour on both (LCD + VGA) monitor
    - trying two different monitors and cables (which did work with other computers)
    - Updating the video drivers (from the Lenovo website) and Presentation Director to the latest versions
    I then figured it might be a hardware fault, so I tried to see if the external monitor was activated on bootup. I made sure the "LCD + VGA" option on boot was selected in BIOS. Still no joy.
    Finally, I figured the actual VGA connector was broken so I bought a compatible mini docking station (port replicator) and attached the VGA cable to that and even that didn't work.
    What on earth could be wrong if it's not the software and not the VGA connector? The video card is working as its powering the LCD display?
    Is my only option to give it in to repair (I can't afford that)?
    Michael
    Message Edited by mstrom on 07-03-2008 04:03 AM

    T23FUN wrote:
    Hi,
    Does the external connections and cables work with another system. I'd do that first.
    If all of it works with another system then it could be drivers or internal things but try that first.
    There are some driver updates on the Lenovo site. Make sure your BIOS are updated and such.
    Good Luck,
    Yup, checked the cables and monitor with another system (actually with the same laptop using a USB->VGA adaptor which isn't a long-term fix)
    Also updated to all the latest driver including a BIOS update (which I forgot to mention).
    thanks,
    Michael

  • X crashes on startup with AMD dual screen setup

    Ever since I bought my AMD Kaveri A10-7850K at the end of January last year I've been having trouble getting a dual screen setup to work properly. Initially I put this down to poor beta drivers, and as I had far too much going on to investigate the issue further beyond some fiddling with xorg.conf, I bought an AMD A4-4000 as a temporary solution while waiting for the Catalyst drivers to catch up.
    In June last year I decided to give my A10-7850K another go, assuming that the Catalyst driver would have matured enough in the meantime to cater for the Kaveri processors. Unfortunately the situation was still the same, and I I didn't have the time nor want to be swapping processors all constantly to I decided to just give up on a dual monitor setup for the time being.
    After many years of using two screens, however, it is very hard to get used to a single monitor again, and as January is a quiet month for me I decided today to have another at getting it to work properly.
    My setup is as follows:
    an LG LG 23EA63V connected via HDMI as my main monitor at 1920x1080
    a Viewsonic VP-171b connected via DVI as my secondary monitor at 1280x1024
    AMD A10-7850K APU
    Catalyst 14.12-1 drivers installed from Vi0l0's repo
    Xorg 1.15 installed from Vi0l0's repo
    KDE 4.14.3 using kwin
    KDM is launched using kdm.service
    KMS disabled via nomodeset
    fglrx module loaded on boot via cat /etc/modules-load.d/catalyst.conf
    Tear free rendering enabled
    After plugging in my secondary monitor configuring it in amdcccle to be to the right of my primary moniotor in multi-display desktop mode, everything works correctly. This even works in my preferred setup where the secondary monitor is rotated into portrait mode, although I currently have not configured rotation so as to not overcomplicate the troubleshooting.
    Upon rebooting, however, X hangs with a static white cursor in the top left hand of both screens, which after a while disappears completely. I then have to unplug the secondary (DVI) monitor and hard reset the PC before I can boot into my desktop again. The bizarre thing is though that when I plug in my secondary monitor again and configure it as desired, either through amdcccle or krandr, everything works perfectly again.
    This is, of course, an incredibly cumbersome way of working, especially when most of the time I forget to disconnect my DVI monitor prior to turning on my PC, hence me just making do with a single monitor for the past 7 months.
    I did a complete fresh install of Catalyst yesterday (uninstall drivers, delete remaining config files, reinstall drivers from repo), to no avail.
    Output from xrandr after rebooting with the secondary monitor disconnected:
    $ xrandr
    Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 16384 x 16384
    DFP1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 510mm x 290mm
    1920x1080 60.00*+ 50.00 59.94 60.00 50.00 59.94
    1776x1000 50.00 59.94 50.00 59.94
    1680x1050 50.00 59.95
    1400x1050 50.00 59.98
    1600x900 50.00 60.00
    1280x1024 50.00 60.02
    1440x900 50.00 59.89
    1280x960 50.00 60.02
    1280x800 50.00 59.81
    1152x864 50.00 59.96
    1280x768 50.00 59.81
    1280x720 60.00 50.00 59.94
    1024x768 50.00 60.00
    1152x648 50.00 59.94
    800x600 50.00 60.32
    720x480 50.00 60.00 59.94
    640x480 50.00 60.00 59.94
    DFP2 disconnected (normal left inverted right x axis y axis)
    CRT1 disconnected (normal left inverted right x axis y axis)
    Output from xrandr after reconnecting the secondary monitor:
    $ xrandr
    Screen 0: minimum 320 x 200, current 3200 x 1080, maximum 16384 x 16384
    DFP1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 510mm x 290mm
    1920x1080 60.00*+ 50.00 59.94 60.00 50.00 59.94
    1776x1000 50.00 59.94 50.00 59.94
    1680x1050 50.00 59.95
    1400x1050 50.00 59.98
    1600x900 50.00 60.00
    1280x1024 50.00 60.02
    1440x900 50.00 59.89
    1280x960 50.00 60.02
    1280x800 50.00 59.81
    1152x864 50.00 59.96
    1280x768 50.00 59.81
    1280x720 60.00 50.00 59.94
    1024x768 50.00 60.00
    1152x648 50.00 59.94
    800x600 50.00 60.32
    720x480 50.00 60.00 59.94
    640x480 50.00 60.00 59.94
    DFP2 connected 1280x1024+1920+0 (normal left inverted right x axis y axis) 338mm x 270mm
    1280x1024 60.02*+ 75.02
    1280x960 75.02 60.02
    1152x864 75.00 60.02
    1280x768 75.02 60.02
    1280x720 75.02 60.02
    1024x768 85.00 75.03 70.07 60.00
    800x600 85.06 72.19 75.00 60.32 56.25
    640x480 85.01 75.00 72.81 66.61 59.94
    CRT1 disconnected (normal left inverted right x axis y axis)
    my xorg.conf file:
    Section "ServerLayout"
    Identifier "aticonfig Layout"
    Screen 0 "aticonfig-Screen[0]-0" 0 0
    EndSection
    Section "Module"
    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 "aticonfig-Monitor[0]-1"
    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" "1920x1080"
    Option "TargetRefresh" "60"
    Option "Position" "0 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" "1280x1024"
    Option "TargetRefresh" "60"
    Option "Position" "1920 0"
    Option "Rotate" "normal"
    Option "Disable" "false"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    Option "Monitor-DFP1" "0-DFP1"
    Option "Monitor-DFP2" "0-DFP2"
    BusID "PCI:0:1:0"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-1"
    Driver "fglrx"
    Option "Monitor-DFP1" "0-DFP1"
    BusID "PCI:0:1:0"
    Screen 1
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device "aticonfig-Device[0]-0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Virtual 3200 3200
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-1"
    Device "aticonfig-Device[0]-1"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    My Xorg.0.log:
    http://pastebin.com/ki5A0T7R
    I'm quite desperate to get this working, almost a year after buying my new setup, so any pointers are welcome!
    Thanks in advance!

    Actually of the above listed commands only xclock is in xorg-apps .
    pacman -S xorg-apps xorg-twm xterm
    is needed.

  • MSI gtx 570 twin frozr III - Dual Screen Windowed mode issues

    Ok, so... I was running a solo monitor 1440x900 resolution, i recently purchased a brand new asus 24 inch 1900x1080 monitor. Basically what is happening is when i play WoW or Battlefield 3 in windowed mode on the 1080p monitor the colors are not perfect. When i go full-screen on the new monitor no issues, but that is not what i want to have to live with. When i say the colors are not perfect what i mean is, for example when i look @ the sky instead of being a smooth transition or blend from one shade of the sky to the next it is bars or stripes of each shade as if i am looking at the sky in 8 bit color instead of 32 bit color. Another thing to note is that when i login to windows 7 the blue screen where i input the password has the same effect. The 1440x900 monitor is running everything just fine. the only issue is with the 1080p monitor.
    I am using DVI cabling for both, and have swapped them around to see if that was the issue, and sadly it is not. I am running the updated gpu driver, which i uninstalled and re-downloaded and installed again tonight.
    When i use the HDMI cable,  that fixes the issue but i need the HDMI for my 42 inch tv.
    Also in windows, just to cover my bases with this post, i have the native resolutions properly configured, as well as in the game for the given monitor it is being played on.
    Anyone know of a fix for this?
    i7 2600k
    asus PBZ68-v Pro/Gen3
    Msi gtx 570
    Samsung syncmaster 953bw (1440x900)
    Asus VS248 (1900x1080)
    I am more than happy to re-explain anything that may not be as descriptive or clear to you just let me know!
    EDIT!
    When i run the 24 inch 1080p new monitor as my only monitor on the system, everything runs perfectly...
    Edit #2
    Ok so i have pin pointed a possible cause
    This msi gtx 570 struggles with operating multiple displays with different resolutions, while dual screening with my 1080p television and the 1080p display, everything runs as expected. Having to also render a 1440x900 display is probably the reason i am having the graphic issues. Is there any type of utility, setting, or other fix to this type issue? also this gpu is certainly less than 2 weeks since i purchased i could get a different card to remedy this... any suggestion? if you suggest a different card can you say so with certainty that it will work properly under the condition in which 2 resolutions will be required?

    Ok, the problem is fixed and Svet i skipped a step or two. I installed the new driver with the clean install to save time for an initial attempt. What is interesting is that with the Geforce driver, only one 1920x1080 resolution was available
    The msi driver gave me 2 options, 1920x1080 and 1920x1080 (native). The latter resolution fixed the issue for whatever reason.
    The solution to this problem is so easy, when i purchased battlefield 3 it prompted me to download the geforce.com driver and i did not think anything of it at the time, lesson learned.

  • Dual screen configuration makes keyboard stop working on X

    Hi. My computer is working just fine. And my video card has two outputs (Nvidia[GeForce 9600 GT] (rev a1)). I got a second monitor, and I was trying to configure Xorg to use the two of them in a dual screen configuration.
    I tried creating the 10-monitors.conf file like described in  https://wiki.archlinux.org/index.php/NV … e_monitors, and here is what happens. X does use the two monitors, and I can even see my mouse pointer moving from one to the other. But then my keyboard stops working, and so do the mouse keys, only moving the mouse around works.
    I have the impression this is related to the missing InputDevices in the ServerLayout. Something in my configuration probably needs that still, if the ServerLayout gets explicitly configured. What should I do? Could this be related to HAL somehow? How do I turn off HAL without it trying to kill me?
    Thanks.

    I have been using nvidia's TwinView for a long time, currently with two different monitor sizes. There is no need to do anything with udev if you have your xorg.conf set up properly. Here's what mine looks like, though you will have to adapt it according to your hardware.
    Section "ServerLayout"
    Identifier "Dual Layout"
    Screen "Screen0"
    EndSection
    Section "ServerFlags"
    Option "AutoAddDevices" "on"
    Option "AutoEnableDevices" "on"
    Option "AllowEmptyInput" "on"
    EndSection
    Section "Monitor"
    Identifier "Acer"
    HorizSync 30-81
    VertRefresh 56-76
    EndSection
    Section "Device"
    Identifier "GeForce 210"
    Driver "nvidia"
    Option "NvAGP" "3"
    Option "NoLogo" "1"
    Option "RenderAccel" "true"
    Option "AddARGBGLXVisuals" "true"
    Option "TwinView" "true"
    Option "SecondMonitorHorizSync" "24-70"
    Option "SecondMonitorVertRefresh" "56-75"
    Option "MetaModes" "1680x1050, 1600x900 @1600x900"
    Option "TwinViewOrientation" "RightOf"
    Option "WrappedFB" "true"
    EndSection
    Section "Extensions"
    Option "Composite" "true"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "GeForce 210"
    Monitor "Acer"
    DefaultDepth 24
    Subsection "Display"
    Depth 24
    Modes "1680x1050" "1600x900"
    ViewPort 0 0
    EndSubsection
    EndSection
    It is best to let as much as possible be handled automatically, but getting two screens working properly requires a bit of tweaking.

  • Dual screen hd cinema 30" on Win7

    Hi,
    I would like to know how to configure my apple hd cinema screen on windows 7. My computer is a macbookpro 15 and I want to use them like dual screen, at this moment I just see clone screens. I would like to have different application on each screen, I work with autocad. Is it possible to have different resolution on each screen ?

    Anyone here can help me with the following? After trying to play a blu-ray film on my 30" screen I get an error saying my screen is NOT HDCP compatible.
    What software are you using? Is it running under OSX? If you are using Boot Camp, try AnyDVD HD
    <http://www.slysoft.com/en/anydvdhd.html>
    It should work with a non-HDCP display.
    Which I think is very strange, because i learned that this HDCP was just put on blu-ray discs to prevent copying it. How can you copy a disc on a SCREEN?
    They are worried about copying the digital video from the DVI port. HDCP keeps it encrypted all the way into the display.
    Before I bought the screen i looked at all technical details from the screen on the Apple website, and no where I can find it doesnt support HDCP.
    No where does it say that it does support HDCP.
    Why else call it HD CINEMA screen if you can play HD content on it?
    It can display HD, just not encrypted DVI.
    Is there a solution for this problem or did I just waste 1800.- ??
    AnyDVD HD if you are using Boot Camp.
    There are some 30" displays with HDCP, such as:
    <http://www.necdisplay.com/Products/Product/?product=4af7b335-9302-4429-8d73-74c 35a363b57>
    <http://www.eizo.com/products/lcd/sx3031w/index.asp>

  • Dual screen issue

    Hi Team,
    I have dual screens. A Dell P190S (1280x1024) and a HP ZR22w (1920x1080). I have also an Intel® Q45 and Q43 Express Chipsets in my desktop PC.
    When I use PS, sometimes the circle which indicates the size of the draw tool or the earse tool is freezing on my screens. Even if I close PS, it is still there or even when I lock my computer is still there.
    Unfortunately I haven't found any solution for this issue.
    Is it because of the different screen resolution?
    Message was edited by: gaborf

    OK, so we are talking about the same ball park circumstances from the historical problems with brush cursors.  I think Compaq computers are rather arbitary regards hardware and drivers, and don't usually allow much in the way of upgrading, so you could be stuck with what you have got.  All I can suggest it homing in on those paramiters with Google
    Photoshop CS4 cursor issue or problem
    sort of thing.
    This is the sort of hit you'll find
    http://www.earthboundlight.com/phototips/photoshop-cursor-problems.html
    You'll hopefully find something that rings a bell or matches your circumstances closely.  Good luck.
    [EDIT]  I wonder if your hardware will support Windows 7?  It has excellent dual screen support.  That irrifutable law of presentations, that 'when a Powerpoint and projector were involved, there will _always_ be a problem' has finally been broken.  If your employer was daft enough to invest in Compaq hardware, I doubt you'll get any help from them.

  • Dual screen problems after last updates

    Hello everyone,
         it was long time since our Arch gave me some problems, but then now I'm fighting furiously with dual screen configuration with new gnome. Let me explain.
    I upgraded the home PC that I hadn't update for months, so I updated more or less everything ... kernel, nvidia drivers, gnome, etc..
    The PC has always been dual screen (no twin view, without xinerama), two screens (one on a LCD monitor and one on a TV) where I could run separate applications independent.
    Now, after the update, when I launch any application in the second screen (the TV) it starts on the first (screen).
    Obviously I have't made any changes to xorg.conf before and after the upgrade. I also tried to recreate one with the nvidia-tools but nothing ...
    Can you help me? Someone had the same problem?
    I post my xorg.conf, I hope that someone has a hint. I can no longer watching movies on TV and it is very annoying!
    # nvidia-settings: X configuration file generated by nvidia-settings
    # nvidia-settings: version 1.0 (buildmeister@builder63) Wed Oct 1 15:10:25 PDT 2008
    # Auto-generated by Archie mkxcfg
    # Auto-generated by Archie mkxcfg
    #Section "DRI"
    # Mode 0666
    #EndSection
    Section "ServerLayout"
    # PS/2 Mouse not detected
    # Serial Mouse not detected
    Identifier "Xorg Configured"
    Screen 0 "Screen0" 1024 0
    Screen 1 "Screen1" LeftOf "Screen0"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "USB Mouse" "CorePointer"
    EndSection
    Section "Files"
    # Additional fonts: Locale, Gimp, TTF...
    # FontPath "/usr/share/lib/X11/fonts/latin2/75dpi"
    # FontPath "/usr/share/lib/X11/fonts/latin2/100dpi"
    # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
    RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc:unscaled"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/PEX"
    FontPath "/usr/share/fonts/cyrillic"
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/ttf/western"
    FontPath "/usr/share/fonts/ttf/decoratives"
    FontPath "/usr/share/fonts/truetype"
    FontPath "/usr/share/fonts/truetype/openoffice"
    FontPath "/usr/share/fonts/truetype/ttf-bitstream-vera"
    FontPath "/usr/share/fonts/latex-ttf-fonts"
    FontPath "/usr/share/fonts/defoma/CID"
    FontPath "/usr/share/fonts/defoma/TrueType"
    EndSection
    Section "Module"
    # Load "type1"
    Load "ddc" # ddc probing of monitor
    Load "dbe"
    # Load "dri"
    Load "extmod"
    Load "glx"
    Load "bitmap" # bitmap-fonts
    Load "freetype"
    Load "record"
    # Load "synaptics"
    EndSection
    Section "ServerFlags"
    Option "AllowMouseOpenFail" "true"
    Option "Xinerama" "0"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "keyboard"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "it"
    Option "XkbVariant" ""
    EndSection
    Section "InputDevice"
    Identifier "Serial Mouse"
    Driver "mouse"
    Option "Protocol" "Microsoft"
    Option "Device" "/dev/ttyS0"
    Option "Emulate3Buttons" "true"
    Option "Emulate3Timeout" "70"
    Option "SendCoreEvents" "true"
    EndSection
    Section "InputDevice"
    Identifier "PS/2 Mouse"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "ZAxisMapping" "4 5"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "true"
    Option "Emulate3Timeout" "70"
    Option "SendCoreEvents" "true"
    EndSection
    Section "InputDevice"
    Identifier "USB Mouse"
    Driver "mouse"
    Option "Device" "/dev/input/mice"
    Option "SendCoreEvents" "true"
    Option "Protocol" "IMPS/2"
    Option "ZAxisMapping" "4 5"
    Option "Buttons" "5"
    EndSection
    Section "Monitor"
    # Warning: This may fry old Monitors
    # Very conservative. May flicker.
    # VertRefresh 50.0 - 62.0 # Extreme conservative. Will flicker. TFT default.
    # Default modes distilled from
    # "VESA and Industry Standards and Guide for Computer Display Monitor
    # Timing", version 1.0, revision 0.8, adopted September 17, 1998.
    # $XFree86: xc/programs/Xserver/hw/xfree86/etc/vesamodes,v 1.4 1999/11/18 16:52:17 tsi Exp $
    # 640x350 @ 85Hz (VESA) hsync: 37.9kHz
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Samsung SyncMaster"
    HorizSync 30.0 - 81.0
    VertRefresh 56.0 - 75.0
    ModeLine "640x350" 31.5 640 672 736 832 350 382 385 445 +hsync -vsync
    ModeLine "640x400" 31.5 640 672 736 832 400 401 404 445 -hsync +vsync
    ModeLine "720x400" 35.5 720 756 828 936 400 401 404 446 -hsync +vsync
    ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync
    ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync
    ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync
    ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync
    ModeLine "800x600" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync
    ModeLine "800x600" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
    ModeLine "800x600" 50.0 800 856 976 1040 600 637 643 666 +hsync +vsync
    ModeLine "800x600" 49.5 800 816 896 1056 600 601 604 625 +hsync +vsync
    ModeLine "800x600" 56.3 800 832 896 1048 600 601 604 631 +hsync +vsync
    ModeLine "1024x768" 44.9 1024 1032 1208 1264 768 768 776 817 +hsync +vsync interlace
    ModeLine "1024x768" 65.0 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
    ModeLine "1024x768" 75.0 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
    ModeLine "1024x768" 78.8 1024 1040 1136 1312 768 769 772 800 +hsync +vsync
    ModeLine "1024x768" 94.5 1024 1072 1168 1376 768 769 772 808 +hsync +vsync
    ModeLine "1152x864" 108.0 1152 1216 1344 1600 864 865 868 900 +hsync +vsync
    ModeLine "1280x960" 108.0 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync
    ModeLine "1280x960" 148.5 1280 1344 1504 1728 960 961 964 1011 +hsync +vsync
    ModeLine "1280x1024" 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
    ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
    ModeLine "1280x1024" 157.5 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync
    ModeLine "1600x1200" 162.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    ModeLine "1600x1200" 175.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    ModeLine "1600x1200" 189.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    ModeLine "1600x1200" 202.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    ModeLine "1600x1200" 229.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    ModeLine "1792x1344" 204.8 1792 1920 2120 2448 1344 1345 1348 1394 -hsync +vsync
    ModeLine "1792x1344" 261.0 1792 1888 2104 2456 1344 1345 1348 1417 -hsync +vsync
    ModeLine "1856x1392" 218.3 1856 1952 2176 2528 1392 1393 1396 1439 -hsync +vsync
    ModeLine "1856x1392" 288.0 1856 1984 2208 2560 1392 1393 1396 1500 -hsync +vsync
    ModeLine "1920x1440" 234.0 1920 2048 2256 2600 1440 1441 1444 1500 -hsync +vsync
    ModeLine "1920x1440" 297.0 1920 2064 2288 2640 1440 1441 1444 1500 -hsync +vsync
    ModeLine "1800x1440" 230.0 1800 1896 2088 2392 1440 1441 1444 1490 +hsync +vsync
    ModeLine "1800x1440" 250.0 1800 1896 2088 2392 1440 1441 1444 1490 +hsync +vsync
    ModeLine "640x480" 43.2 640 680 744 848 480 481 484 509 -hsync +vsync
    ModeLine "768x576" 35.0 768 792 872 976 576 577 580 597 -hsync +vsync
    ModeLine "768x576" 42.9 768 800 880 992 576 577 580 601 -hsync +vsync
    ModeLine "768x576" 45.5 768 808 888 1008 576 577 580 602 -hsync +vsync
    ModeLine "768x576" 51.8 768 808 888 1008 576 577 580 605 -hsync +vsync
    ModeLine "768x576" 62.6 768 816 896 1024 576 577 580 611 -hsync +vsync
    ModeLine "800x600" 68.2 800 848 936 1072 600 601 604 636 -hsync +vsync
    ModeLine "1024x768" 113.3 1024 1096 1208 1392 768 769 772 814 -hsync +vsync
    ModeLine "1152x864" 81.6 1152 1216 1336 1520 864 865 868 895 -hsync +vsync
    ModeLine "1152x864" 119.7 1152 1224 1352 1552 864 865 868 907 -hsync +vsync
    ModeLine "1152x864" 143.5 1152 1232 1360 1568 864 865 868 915 -hsync +vsync
    ModeLine "1280x960" 124.5 1280 1368 1504 1728 960 961 964 1001 -hsync +vsync
    ModeLine "1280x960" 129.9 1280 1368 1504 1728 960 961 964 1002 -hsync +vsync
    ModeLine "1280x960" 179.0 1280 1376 1520 1760 960 961 964 1017 -hsync +vsync
    ModeLine "1280x1024" 191.0 1280 1376 1520 1760 1024 1025 1028 1085 -hsync +vsync
    ModeLine "1400x1050" 122.6 1400 1488 1640 1880 1050 1051 1054 1087 -hsync +vsync
    ModeLine "1400x1050" 149.3 1400 1496 1648 1896 1050 1051 1054 1094 -hsync +vsync
    ModeLine "1400x1050" 155.8 1400 1496 1648 1896 1050 1051 1054 1096 -hsync +vsync
    ModeLine "1400x1050" 179.3 1400 1504 1656 1912 1050 1051 1054 1103 -hsync +vsync
    ModeLine "1400x1050" 214.4 1400 1512 1664 1928 1050 1051 1054 1112 -hsync +vsync
    ModeLine "1600x1200" 280.6 1600 1728 1904 2208 1200 1201 1204 1271 -hsync +vsync
    Option "DPMS" "true"
    # HorizSync 28.0 - 78.0 # Warning: This may fry very old Monitors
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Unknown"
    ModelName "TV-0"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "nvidia"
    VendorName "All"
    BoardName "All"
    EndSection
    Section "Device"
    Identifier "Videocard0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 7300 LE"
    BusID "PCI:4:0:0"
    Screen 0
    EndSection
    Section "Device"
    Identifier "Videocard1"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 7300 LE"
    BusID "PCI:4:0:0"
    Screen 1
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 7300 LE"
    BusID "PCI:4:0:0"
    Screen 0
    EndSection
    Section "Device"
    Identifier "Device1"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 7300 LE"
    BusID "PCI:4:0:0"
    Screen 1
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "TwinViewXineramaInfoOrder" "CRT-0"
    Option "metamodes" "CRT: 1280x1024 +0+0; CRT: 1024x768 +0+0; CRT: 800x600 +0+0; CRT: 640x480 +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    # Removed Option "metamodes" "TV: nvidia-auto-select +0+0"
    Identifier "Screen1"
    Device "Device1"
    Monitor "Monitor1"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "TwinViewXineramaInfoOrder" "TV-0"
    Option "metamodes" "TV: 1024x768 +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Writing the post a tried to install fluxbox, and then... all ok. In fluxbox all works fine. I think this is a problem related to the new gnome screen configurer.
    I post an image of gnome screen configurer vs nvidia-tools.
    Googling around I found that new gnome screen configuration (using xrandr) is not compatible with nvidia drivers. Could be this the source of the problem?
    Help please
    Last edited by frullino (2008-10-25 13:17:29)

    Hi,
    Does your Mac go to the sleep status when you close the cover? If so, the remote session can be terminated due to time out and the time out value may be redesigned in the latest versions.
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • R6870 Hawk Dual screen issue

    Hey there,
    (R6870 HAWK)
    The issue is: I cant get a dual screen on my card, no matter what I try.
    Both screen and cables are working just fine (I tried all possible combos), but there is simply no way I can get 2 screens to work at the same time.
    Any ideas?
    Many thanks...

    Are you using the two DVI ports ?
    Swop the two monitors around by switching the cables on the card DVI ports. Does the other monitor work when you do that ?
    Also chek what DVI connectors are present on your monitors ? Do they differ ? see this guide to the different DVI connections. http://en.wikipedia.org/wiki/Digital_Visual_Interface

  • Dual Screening Problem

    I just bought a 24 inch external monitor so i could dual screen on my imac. When I put it on the best resolution (1920x1080) the picture is roughly 2 inches to one side. I tried auto config but it has no effect. Any ideas?

    just bought a dvi adaptor, fixed my problem

  • Dual screen on intel with compiz

    Hi all
    I've been trying to get compiz to work with dual screen on my fully updated Arch Linux laptop for a while now. It has an Intel card and I usually set up dual screen by using xrandr. This works perfectly under metacity but crashes X under compiz. If I try to set dual screen as the default in the gnome menu and then restart X, I get it under compiz but unusably slow. I have searched google but haven't been able to find a solution. I have reproduced this problem on two different intel based laptops. Has anyone been able to get a working dual monitor setup with compiz on Intel?
    Intel driver:
    > cat /var/log/Xorg.0.log | grep intel_drv.so -C 2
    [ 32.614] (II) Loading extension DRI2
    [ 32.614] (II) LoadModule: "intel"
    [ 32.615] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 32.633] (II) Module intel: vendor="X.Org Foundation"
    [ 32.633] compiled for 1.9.4, module version = 2.14.0
    Compiz version:
    compiz 0.8.6
    X version:
    X.Org X Server 1.9.4
    Release Date: 2011-02-04
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.37-ARCH i686
    Current Operating System: Linux stoofvlees 2.6.37-ARCH #1 SMP PREEMPT Fri Feb 18 16:58:42 UTC 2011 i686
    Kernel command line: root=/dev/disk/by-uuid/0fa5f37a-abdc-422f-929b-9fa8a4f2df8d ro acpi_enforce_resources=lax
    Build Date: 04 February 2011 09:39:45PM
    Current version of pixman: 0.20.2
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Thanks in advance. Posted this on the compiz forums too but I'm a bit scared by the motherload of unanswered questions on there.

    Hi all
    I've been trying to get compiz to work with dual screen on my fully updated Arch Linux laptop for a while now. It has an Intel card and I usually set up dual screen by using xrandr. This works perfectly under metacity but crashes X under compiz. If I try to set dual screen as the default in the gnome menu and then restart X, I get it under compiz but unusably slow. I have searched google but haven't been able to find a solution. I have reproduced this problem on two different intel based laptops. Has anyone been able to get a working dual monitor setup with compiz on Intel?
    Intel driver:
    > cat /var/log/Xorg.0.log | grep intel_drv.so -C 2
    [ 32.614] (II) Loading extension DRI2
    [ 32.614] (II) LoadModule: "intel"
    [ 32.615] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 32.633] (II) Module intel: vendor="X.Org Foundation"
    [ 32.633] compiled for 1.9.4, module version = 2.14.0
    Compiz version:
    compiz 0.8.6
    X version:
    X.Org X Server 1.9.4
    Release Date: 2011-02-04
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.37-ARCH i686
    Current Operating System: Linux stoofvlees 2.6.37-ARCH #1 SMP PREEMPT Fri Feb 18 16:58:42 UTC 2011 i686
    Kernel command line: root=/dev/disk/by-uuid/0fa5f37a-abdc-422f-929b-9fa8a4f2df8d ro acpi_enforce_resources=lax
    Build Date: 04 February 2011 09:39:45PM
    Current version of pixman: 0.20.2
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Thanks in advance. Posted this on the compiz forums too but I'm a bit scared by the motherload of unanswered questions on there.

  • Xmonad doesn't respect dual screen

    I have a dual screen setup.
    When I run xmonad it maximizes the windows across the screens and not on each monitor.
    Do I have to change something in the config file ?
    regards,

    Hi here is the xmonad.sh
    import XMonad
    import System.Exit
    import qualified XMonad.StackSet as W
    import qualified Data.Map as M
    import XMonad.Util.Run
    import XMonad.Hooks.DynamicLog
    import XMonad.Hooks.ManageDocks
    import XMonad.Layout.NoBorders
    import XMonad.Layout.Tabbed
    import System.IO
    -- -xos4-terminus-medium-r-*-*-14-*-*-*-*-*-*-*
    myLauncher :: String
    myLauncher = "`dmenu_path | dmenu -fn '-xos4-terminus-medium-r-*-*-14-*-*-*-*-*-*-*' -nb '#303030' -nf '#959595' -sf '#FFFFFF' -sb '#606060'`"
    myKeys conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $
    [ ((modMask .|. shiftMask, xK_Return), spawn $ XMonad.terminal conf)
    , ((modMask, xK_p ), spawn myLauncher)
    , ((modMask .|. shiftMask, xK_c ), kill)
    , ((modMask, xK_space ), sendMessage NextLayout)
    , ((modMask .|. shiftMask, xK_space ), setLayout $ XMonad.layoutHook conf)
    , ((modMask, xK_n ), refresh)
    , ((modMask, xK_Tab ), windows W.focusDown)
    , ((modMask, xK_j ), windows W.focusDown)
    , ((modMask, xK_k ), windows W.focusUp )
    , ((modMask, xK_m ), windows W.focusMaster )
    , ((modMask, xK_Return), windows W.swapMaster)
    , ((modMask .|. shiftMask, xK_j ), windows W.swapDown )
    , ((modMask .|. shiftMask, xK_k ), windows W.swapUp ) , ((modMask, xK_h ), sendMessage Shrink) , ((modMask, xK_l ), sendMessage Expand)
    , ((modMask, xK_t ), withFocused $ windows . W.sink)
    , ((modMask , xK_comma ), sendMessage (IncMasterN 1))
    , ((modMask , xK_period), sendMessage (IncMasterN (-1)))
    , ((modMask .|. shiftMask, xK_q ), io (exitWith ExitSuccess))
    , ((modMask , xK_q ), restart "xmonad" True)
    , ((modMask .|.shiftMask .|. controlMask , xK_c ), spawn "emacs ~/.xmonad/xmonad.hs")
    , ((modMask .|. controlMask , xK_l ), spawn "xscreensaver-command -lock")
    , ((modMask .|. controlMask , xK_k ), spawn "python ~/pythonScripts/SwitchKbLayoutDesk/src/setNextKbLayout.py")
    , ((modMask , xK_b ), sendMessage ToggleStruts)
    ++
    [((m .|. modMask, k), windows $ f i)
    | (i, k) <- zip (XMonad.workspaces conf) [xK_1 .. xK_6]
    , (f, m) <- [(W.greedyView, 0), (W.shift, shiftMask)]]
    myMouseBindings (XConfig {XMonad.modMask = modMask}) = M.fromList $
    [ ((modMask, button1), (\w -> focus w >> mouseMoveWindow w))
    , ((modMask, button2), (\w -> focus w >> windows W.swapMaster))
    , ((modMask, button3), (\w -> focus w >> mouseResizeWindow w))
    myLayouts = tiled ||| Mirror tiled ||| noBorders Full ||| simpleTabbedBottom
    where
    tiled = Tall 1 (2/100) (1/2)
    myManageHook = composeAll
    [ className =? "MPlayer" --> doFloat
    , className =? "Gimp" --> doFloat
    , className =? "Gimp" --> doFloat
    , resource =? "desktop_window" --> doIgnore ]
    myStartupHook :: X ()
    myStartupHook = do
    spawn "xset -b"
    spawn "xrdb -load ~/.Xdafaults"
    spawn "xmodmap ~/.Xmodmap"
    spawn "xscreensaver -no-splash"
    main = do
    h <- spawnPipe "dzen2 -w 1024 -ta l -fn ' -*-lucida-*-*-normal-*-14-*-*-*-*-*-*-*' -bg '#303030' -fg '#FFFFFF'"
    xmonad $ defaultConfig {
    terminal = "xterm",
    focusFollowsMouse = True,
    borderWidth = 1,
    modMask = mod1Mask,
    workspaces = [" colnsole "," dev "," email "," browser "," SSH ", " extra "],
    normalBorderColor = "#303030",
    focusedBorderColor = "#55BBFF",
    keys = myKeys,
    mouseBindings = myMouseBindings,
    layoutHook = avoidStruts $ smartBorders myLayouts,
    manageHook = myManageHook <+> manageDocks,
    startupHook = myStartupHook,
    logHook = dynamicLogWithPP $ defaultPP {
    ppCurrent = wrap "^fg(#FFFFFF)^bg(#606060)" "^fg()^bg()"
    ,ppVisible = wrap "^fg(#FFFFFF)^bg()" "^fg()^bg()"
    ,ppHidden = wrap "^fg(#55BBFF)^bg()" "^fg()^bg()"
    ,ppHiddenNoWindows = wrap "^fg(#808080)^bg()" "^fg()^bg()"
    ,ppUrgent = wrap "^fg(#FF0000)^bg()" "^fg()^bg()"
    ,ppTitle = wrap " ^fg(#FFFFFF)^bg()" "^fg()^bg()"
    ,ppLayout = \x -> "^fg(#FFBB00)^bg()"
    ++ case x of
    "Tall" -> "Tiled"
    "Full" -> "Full"
    "Mirror Tall" -> "Tiled Bottom"
    "Tabbed Bottom Simplest" -> "Tabbed"
    _ -> x
    ++ "^fg()^bg()"
    ,ppSep = " "
    ,ppWsSep = ""
    ,ppOutput = hPutStrLn h
    here the xorg.conf
    # xorg.conf (X.Org X Window System server configuration file)
    # This file was generated by dexconf, the Debian X Configuration tool, using
    # values from the debconf database.
    # Edit this file with caution, and see the xorg.conf manual page.
    # (Type "man xorg.conf" at the shell prompt.)
    # This file is automatically updated on xserver-xorg package upgrades *only*
    # if it has not been modified since the last upgrade of the xserver-xorg
    # package.
    # If you have edited this file but would like it to be automatically updated
    # again, run the following command:
    # sudo dpkg-reconfigure -phigh xserver-xorg
    Section "Screen"
    Identifier "Default Screen"
    Monitor "Configured Monitor"
    Device "Configured Video Device"
    Defaultdepth 24
    EndSection
    Section "Device"
    Identifier "Configured Video Device"
    Option "UseFBDev" "true"
    Option "VideoOverlay" "on"
    Option "OpenGLOverlay" "off"
    Driver "fglrx"
    EndSection
    Section "InputDevice"
    Identifier "Generic Keyboard"
    Driver "kbd"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    #Option "XkbLayout" "us"
    #Option "XkbVariant" "us"
    #Option "XkbOptions" "compose:lwin"
    #Option "XkbOptions" "compose:rwin"
    EndSection
    Section "InputDevice"
    Identifier "Configured Mouse"
    Driver "mouse"
    Option "CorePointer"
    EndSection
    Section "ServerLayout"
    Identifier "Default Layout"
    screen "Default Screen"
    EndSection
    Section "Monitor"
    Identifier "Configured Monitor"
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection

Maybe you are looking for

  • Got stuck on MAIN_NEWBAST/TABIM_UPG will upgrading from R/3 470 to ECC6.0

    Hi experts. While I am doing SAP R3 upgrading now, from 470 to 6.0, but seems the upgrade program got stuck on the phase of TAB_IMP in downtime. It takes more than 15 hrs without and logs writed or and CPU occupied... The latest changed log was oracl

  • How to Play .wav files in Safari?

    Hi: I need a little help. I would like Safari to play wav files instead of downloading those file to my Downloads folder. Can this be done. Thanks, -AstraPoint

  • Scheduled CUIC Reports losing filtering criteria.

    CUIC 10.01 ICM 9.0 We have a reoccurring issue where some scheduled reports fail with this message: "SCHEDULED REPORT EXECUTION FAILED - DATA-PROCESSING-CENTER-ERROR" When I access the report, the filtering criteria is missing.  Once I define the cri

  • Mouse 'drift' in windows

    I am sure I am not alone in this but when pressing a click in windows bootcamp the mouse kind of drifts up wards, you have to be very very specific with it. Is there any adjustments that can be made to prevent this? I have windows XP

  • .m4v files blank -- I would like to have a logo on it. Is it possible?

    Hi, How can I get the following .m4v files to have a logo or project file or something else besides this white blank page? I created it by going out of Premiere Pro CS 5.5 then hitting File ----- Export Media ---- I set my settings and then pressed O