Xmonad problems?

I am trying to learn and use xmonad. I have tried Thayer's config and Button's config and both get errors while loading. With Thayer's I get a "Could not find module `XMonad.Actions.FlexibleResize':" and with Buttons it is something about the XMonad.Stackset module. I haven't been able to get dzen2 to do anything but I am still playing with that.
I thought I installed everything so I am not sure what those errors are.

Ok.
EDIT: hehe.. being a bit fast here.. X11-1.4.0 is in the community repo. Get it with pacman -Sy and try again..
As a temporary workaround you could compile xmonad-contrib-0.5 yourself and follow the instructions in the README file. Then add ~/bin and ~/lib to your .bashrc path. Its really easy to compile. Download, untar and read the README. Then copy/paste the compilation commands and execute them one by one and add the above paths to your .bashrc.
That's what I did.
You can find it here:
http://hackage.haskell.org/packages/arc … 0.5.tar.gz
Hey, but you still need the X-11 lib. Get it here and follow the same instructions.
http://hackage.haskell.org/packages/arc … 4.0.tar.gz
Last edited by Ashren (2007-12-11 15:17:29)

Similar Messages

  • [SOLVED] Dmenu + Xmonad, problem in a new version.

    Hello guys.
    I recently have problem with the new version of Dmenu on Xmonad. Dmenu version is 4.5 and the code i use is this:
    keys' :: XConfig Layout -> M.Map (KeyMask, KeySym) (X ())
    keys' conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $
    -- launching and killing programs
    [ ((modMask, xK_Return), spawn $ XMonad.terminal conf)
    , ((modMask, xK_F2 ), spawn "exe=`dmenu_path | dmenu -fn -*-profont-*-*-*-*-12-*-*-*-*-*-*-* -nb black -nf rgb:a0/a0/a0 -sb rgb:00/80/80 -sf black` && eval \"exec $exe\"")
    Any idea?
    Thanks in advanced.
    Last edited by n0dix (2012-03-16 02:53:59)

    Well got it working again, look for this post. And changed my file to the following:
    [ ((modMask, xK_Return), spawn $ XMonad.terminal conf)
    , ((modMask, xK_F2 ), spawn "dmenu_run -fn -*-profont-*-*-*-*-12-*-*-*-*-*-*-* -nb black -nf rgb:a0/a0/a0 -sb rgb:00/80/80 -sf black")
    Thanks anyway

  • Xmonad problem

    My windows manager is xmonad-0.9 .  In firefox, the `save as` dialog doesnot appear when i want to choose picture to save by clicking the mouse.
    main = do
        xmonad $ defaultConfig
                { borderWidth        = 1
                , focusedBorderColor     = "#ff6666"
                , normalBorderColor     = "#2222aa"
                , manageHook       = manageHook defaultConfig <+> myManageHook
                , workspaces       = map show [1 .. 10 :: Int]
                , terminal        = "roxterm"
                , modMask          = mod4Mask
                , focusFollowsMouse  = True
                , startupHook      = myStartupHook
                , logHook = myLogHook
                , layoutHook      = windowNavigation $ avoidStruts $ (Mirror tall ||| tall ||| Full)
                --, layoutHook    = ewmhDesktopsLayout $ windowNavigation $ avoidStruts $ (Mirror tall ||| tall ||| Full)
                , keys             = \c -> myKeys c `M.union` keys defaultConfig c
                --, mouseBindings = \c -> myMouse c `M.union` mouseBindings defaultConfig c
        where
            tall     = Tall 1 (3/100) (1/2)
            myStartupHook :: X ()
            myStartupHook = do {
                spawn "fcitx";
                spawn "roxterm";
                spawn "lxpanel";
                spawn "/home/sw2wolf/bin/kvm.sh";
            myLogHook :: X ()
            myLogHook = ewmhDesktopsLogHook
            myManageHook :: ManageHook
            myManageHook = composeAll . concat $
                            [ [ className =? c --> doFloat | c <- myCFloats]
                             ,[ resource  =? r --> doFloat | r <- myRFloats]
                             ,[ title     =? t --> doFloat | t <- myTFloats]
                             ,[ className =? c --> doIgnore | c <- ignores]
                             ,[ className =? "Audacious" --> doShift "3" ]
                             ,[ className =? "Firefox" --> doF W.swapDown]
                             ,[(role =? "gimp-toolbox" <||> role =? "gimp-image-window") --> (ask >>= doF . W.sink)]]
                        where myCFloats = ["Thunderbird-bin", "GQview", "MPlayer", "Gimp","Vncviewer","Xmessage"]
                              myRFloats = ["Dialog", "Download", "Places"]
                              myTFloats  = ["Firefox Preferences", "Element Properties"]
                              ignores = ["trayer"]
                              role = stringProperty "WM_WINDOW_ROLE"
            myKeys (XConfig {modMask = modm}) = M.fromList $
                -- Apps and tools
                [ ((modm, xK_F2), spawn "gmrun")
                , ((modm, xK_f), spawn "/home/firefox/firefox")
                , ((modm, xK_t), spawn "thunderbird")
                , ((modm, xK_p), spawn "exe=`dmenu_path | dmenu -b` && eval \"exec $exe\"")
                , ((modm, xK_F11), spawn "sudo shutdown -r now")
                , ((modm, xK_F12), spawn "sudo shutdown -h now")
                , ((modm .|. controlMask, xK_Print), spawn "sleep 0.2; scrot -s")
                , ((modm, xK_Print), spawn "scrot '/tmp/%Y-%m-%d_%H:%M:%S_$wx$h_scrot.png' -e 'mv $f ~'")
                , ((modm, xK_c), kill)
                -- Window Navigation
                , ((modm, xK_Right), sendMessage $ Go R)
                , ((modm, xK_Left ), sendMessage $ Go L)
                , ((modm, xK_Up   ), sendMessage $ Go U)
                , ((modm, xK_Down ), sendMessage $ Go D)
                -- swap...
                , ((modm .|. controlMask, xK_Right), sendMessage $ Swap R)
                , ((modm .|. controlMask, xK_Left ), sendMessage $ Swap L)
                , ((modm .|. controlMask, xK_Up   ), sendMessage $ Swap U)
                , ((modm .|. controlMask, xK_Down ), sendMessage $ Swap D)
    Last edited by sw2wolf (2009-11-16 01:24:33)

    import XMonad
    import XMonad.Hooks.ManageDocks
    import XMonad.Hooks.EwmhDesktops
    import XMonad.Hooks.DynamicLog
    import XMonad.Hooks.ManageHelpers
    import XMonad.Util.Run(spawnPipe)
    import XMonad.Layout.TwoPane
    import XMonad.Layout.WindowNavigation
    import qualified XMonad.StackSet as W
    import qualified Data.Map as M
    main = do
    xmonad $ defaultConfig
    { borderWidth = 1
    , focusedBorderColor = "#ff6666"
    , normalBorderColor = "#2222aa"
    , manageHook = manageHook defaultConfig <+> myManageHook
    , workspaces = map show [1 .. 10 :: Int]
    , terminal = "roxterm"
    , modMask = mod4Mask
    , focusFollowsMouse = True
    , startupHook = myStartupHook
    , logHook = myLogHook
    , layoutHook = windowNavigation $ avoidStruts $ (Mirror tall ||| tall ||| Full)
    --, layoutHook = ewmhDesktopsLayout $ windowNavigation $ avoidStruts $ (Mirror tall ||| tall ||| Full)
    , keys = \c -> myKeys c `M.union` keys defaultConfig c
    --, mouseBindings = \c -> myMouse c `M.union` mouseBindings defaultConfig c
    where
    tall = Tall 1 (3/100) (1/2)
    myStartupHook :: X ()
    myStartupHook = do {
    spawn "fcitx";
    spawn "roxterm";
    spawn "lxpanel";
    spawn "/home/sw2wolf/bin/kvm.sh";
    myLogHook :: X ()
    myLogHook = ewmhDesktopsLogHook
    myManageHook :: ManageHook
    myManageHook = composeAll . concat $
    [ [ className =? c --> doFloat | c <- myCFloats]
    ,[ resource =? r --> doFloat | r <- myRFloats]
    ,[ title =? t --> doFloat | t <- myTFloats]
    ,[ className =? c --> doIgnore | c <- ignores]
    ,[ className =? "Audacious" --> doShift "3" ]
    ,[ className =? "Firefox" --> doF W.swapDown]
    ,[(role =? "gimp-toolbox" <||> role =? "gimp-image-window") --> (ask >>= doF . W.sink)]]
    where myCFloats = ["Thunderbird-bin", "GQview", "MPlayer", "Gimp","Vncviewer","Xmessage"]
    myRFloats = ["Dialog", "Download", "Places"]
    myTFloats = ["Firefox Preferences", "Element Properties"]
    ignores = ["trayer"]
    role = stringProperty "WM_WINDOW_ROLE"
    myKeys (XConfig {modMask = modm}) = M.fromList $
    -- Apps and tools
    [ ((modm, xK_F2), spawn "gmrun")
    , ((modm, xK_f), spawn "/home/firefox/firefox")
    , ((modm, xK_t), spawn "thunderbird")
    --, ((modm, xK_p), spawn "exe=`dmenu_path | dmenu -b` && eval \"exec $exe\"")
    , ((modm, xK_F11), spawn "sudo shutdown -r now")
    , ((modm, xK_F12), spawn "sudo shutdown -h now")
    , ((modm .|. controlMask, xK_Print), spawn "sleep 0.2; scrot -s")
    , ((modm, xK_Print), spawn "scrot '/tmp/%Y-%m-%d_%H:%M:%S_$wx$h_scrot.png' -e 'mv $f ~'")
    , ((modm, xK_c), kill)
    -- Window Navigation
    , ((modm, xK_Right), sendMessage $ Go R)
    , ((modm, xK_Left ), sendMessage $ Go L)
    , ((modm, xK_Up ), sendMessage $ Go U)
    , ((modm, xK_Down ), sendMessage $ Go D)
    -- swap...
    , ((modm .|. controlMask, xK_Right), sendMessage $ Swap R)
    , ((modm .|. controlMask, xK_Left ), sendMessage $ Swap L)
    , ((modm .|. controlMask, xK_Up ), sendMessage $ Swap U)
    , ((modm .|. controlMask, xK_Down ), sendMessage $ Swap D)
    Last edited by sw2wolf (2009-11-17 00:19:30)

  • [MOVED to another topic] XMonad slow start

    Not an XMonad problem. Started a new topic here.
    Hello,
    for about a week now my XMonad starts very slowly. I can't think of anything that I did that could cause this problem. The only thing which I believe could be (remotely) relevant is installing Gnome, but I've always ran it as another user and never ran XMonad from that user's account.
    Here's my .xinitrc:
    # lower brightness (standard 1)
    xgamma -gamma 0.8
    # background
    feh --bg-scale /home/kamil/.xmonad/background.png
    # clipboard manager
    clipit --no-icon &
    # dzen
    ~/.dzen/dzen.sh &
    # disable touchpad when typing
    syndaemon -i 1 -t &
    # sound off
    amixer -q set Master off
    # xmonad
    exec xmonad
    and my xmonad.hs:
    import qualified XMonad.StackSet as W
    import System.IO (hPutStrLn)
    import XMonad
    import XMonad.Config.Gnome
    import XMonad.Hooks.DynamicLog
    import XMonad.Hooks.ManageDocks
    import XMonad.Layout.ResizableTile
    import XMonad.Util.EZConfig (additionalKeys, additionalKeysP)
    import XMonad.Util.Loggers (logCmd)
    import XMonad.Util.Run (spawnPipe)
    main = do
    statBarPipe <- spawnPipe myStateBar
    xmonad $ defaultConfig
    { -- hooks
    layoutHook = myLayoutHook
    , logHook = dynamicLogWithPP $ myStateBarPP statBarPipe
    , manageHook = manageDocks <+> myManageHook <+> manageHook defaultConfig
    -- keys & mouse
    , modMask = mod4Mask
    -- look
    , borderWidth = 2
    , focusedBorderColor = myColFgUrgent
    , normalBorderColor = myColBgNormal
    -- workspaces
    , workspaces = ["one", "two", "three", "four", "five", "six", "seven", "eight", "nine"]
    } `additionalKeysP` myKeys `additionalKeys`
    [ ((0, 0x1008ff11), spawn "amixer -q set Master 5%- unmute")
    , ((0, 0x1008ff12), spawn "amixer -q set Master mute")
    , ((0, 0x1008ff13), spawn "amixer -q set Master 5%+ unmute")
    -- alternates
    -- apps
    -- myBrowser = "google-chrome --enable-extensions --enable-plugins --enable-remote-fonts --enable-user-scripts"
    myBrowser = "chromium --enable-greasemonkey"
    myPdfViewer = "evince"
    myRunner = "exe=`dmenu_path | dmenu -b -nb '"++ myColBgNormal ++ "' -nf '" ++ myColFgNormal ++ "' -fn '" ++ myFont ++ "' -p '$'` && eval \"exec $exe\""
    myRunnerRoot = "exe=`dmenu_path | dmenu -b -nb '"++ myColBgNormal ++ "' -nf '" ++ myColFgNormal ++ "' -sb '" ++ myColFgUrgent ++ "' -fn '" ++ myFont ++ "' -p '#'` && eval \"exec sudo $exe\""
    myStateBar = "dzen2 -bg '" ++ myColBgNormal ++ "' -fn '" ++ myFont ++ "' -ta l -w 720 -h 24"
    myTerminal = "sakura"
    myTextEditor = "libreoffice"
    -- look
    myColBgNormal = "#2a2b2f"
    myColFgFocus = "#62acce"
    myColFgNormal = "#e1e0e5"
    myColFgUnimp = "#67686b"
    myColFgUrgent = "#e6ac32"
    myFont = "-*-dax-light-r-normal-*-17-*-*-*-p-*-iso8859-1"
    -- config
    myKeys =
    [ -- xmonad
    ("M-<F1>", spawn myRunner)
    , ("M-<F3>", spawn myRunnerRoot)
    , ("M-f", withFocused $ windows . W.sink)
    , ("M-q", kill)
    , ("M-s", spawn "/home/kamil/.dzen/dzen-stats.sh")
    , ("M-S-r", restart "xmonad" True)
    -- apps
    , ("M-b", spawn myBrowser)
    , ("M-m", spawn (myBrowser ++ " www.gmail.com"))
    , ("M-p", spawn myPdfViewer)
    , ("M-t", spawn myTextEditor)
    , ("M-<Return>", spawn myTerminal)
    -- xkb
    , ("M-`", spawn "/home/kamil/conf/kbd/layout_switcher.sh often")
    , ("M-S-`", spawn "/home/kamil/conf/kbd/layout_switcher.sh menu")
    myLayoutHook = avoidStruts (resizableTall ||| resizableWide) where
    resizableTall = ResizableTall 1 (3/100) (1/2) []
    resizableWide = ResizableTall 2 (3/100) (1/2) []
    myManageHook = composeAll
    [ className =? "Gimp" --> doFloat
    , className =? "stalonetray" --> doIgnore
    -- download windows
    , stringProperty "WM_WINDOW_ROLE" =? "epiphany-download-manager" --> doShift "nine"
    , className =? "Download" --> doShift "nine"
    -- dialogs
    , stringProperty "WM_WINDOW_TYPE" =? "_NET_WIM_WINDOW_TYPE_DIALOG" --> doFloat
    -- fontforge
    , stringProperty "WM_NAME" =? "Layers" --> doFloat
    , stringProperty "WM_NAME" =? "Tools" --> doFloat
    myStateBarPP handle = defaultPP
    { -- content
    ppExtras = []
    , ppOrder = \(ws:l:t:e) -> [ws] ++ e
    -- look
    , ppCurrent = dzenColor myColFgFocus ""
    , ppHidden = dzenColor myColFgNormal ""
    , ppOutput = hPutStrLn handle
    , ppSep = " | "
    , ppUrgent = dzenColor myColFgUrgent ""
    When I try to recompile the config, it returns no errors. It creates xmonad.errors but it's empty.
    Only the first start is slow. If I restart X, or XMonad alone, it starts pretty fast, like it did before.
    Can you help me, please?
    Last edited by caminoix (2011-06-21 07:41:22)

    Hello caminoix,
    It's probably not XMonad that's suddenly slower than before; I don't have the same config as you, but I have not had any issues on any of my systems.
    Two suggestions: (1) See how long the .xinitrc file takes to execute (your call to amixer is not backgrounded, for one) by echoing timestamped messages between each command:
    # lower brightness (standard 1)
    xgamma -gamma 0.8
    echo "$(date): xgamma done" >> ~/my-startup-logfile
    # background
    feh --bg-scale /home/kamil/.xmonad/background.png
    echo "$(date): feh done" >> ~/my-startup-logfile
    # sound off
    amixer -q set Master off
    echo "$(date): amixer done" >> ~/my-startup-logfile
    # xmonad
    exec xmonad
    This way you can isolate the problem more, before blaming XMonad first.
    (2) Maybe some component of your xmonad.hs is indeed very slow for some reason. In this case, you should cut down your configuration one thing at a time until you get the normal speed back. For one, my config doesn't have any hooks for logging:
    myEventHook = mempty
    myLogHook = return ()
    So you could try disabling logging first. Or maybe because you upgraded Gnome, the code from your "import XMonad.Config.Gnome" just got that much slower. (This would explain why xmonad is only slow on the first cold boot, but not on restarts (due to caching)). A simple method would be to just use the default, vanilla xmonad.hs and see the speed changes; if it's still slow, then it's definitely not an xmonad problem --- but if it's faster, then it's a problem within your original xmonad.hs file.
    Good luck on your bug hunt...

  • Hardware accelerated applications show up on all virtual desktops

    Hi,
    i have a weird problem, i recently switched (back) to arch linux after i have tried a couple of other distros on exactly the same hardware.
    Only on arch i have the following Problem:
    When applications use hardware accelerated output (e.g. flash, vlc, steam), and i switch virtual desktops, the hardware accelerated part show up on all desktops (although it seems to react to mouse clicks only on the desktop the application is running)
    For vlc i could fix the problem by setting it to opengl output, for flash i had to disable hardware acceleration (which leads to violently blowing fans while watching youtube vids), did not find any solution for steam yet.
    Thing is: something is wrong here on a general scope.
    I use the native nvidia driver and i actually ran xmonad as window manager and switched to mate as i thought this was a xmonad problem, but turns out this is a general problem in the whole installation.
    Any ideas?

    There’s been a couple threads about this, the solution seems to be to install a compositor like xcompmgr or maybe compton (I’m using compton and not seeing the issue).

  • Problem with xorg and xmonad

    Q1 and Q2 solved, left Q3
    Q1) when i start xorg with startx, i get the following errors even though xterm shows up:
    ( EE ) intel(0): Failed to set tiling on front buffer: rejected by kernel
    ( EE ) intel(0): Failed to set tiling on back buffer: rejected by kernel
    ( EE ) intel(0): Failed to set tiling on depth buffer: rejected by kernel
    how do I solve this problem?
    Q2) another problem I have is Ctrl-Alt-backspace does not shutdown x, I have to switch to another console and switch back to Ctrl-C even though I have added a serverflags section with the dontzap option into my xorg.conf in accordance with the wiki, how do I solve this problem too?
    PS in this case my .xinitrc has the line exec xterm
    Q3) After I commented out exec xterm in my .xinitrc file and tried to start xmonad with the line $HOME/bin/xmonad, this happens in addition to the error in Q1:
    Setting master
    /home/user/.xinitrc: line 13: /home/user/bin/xmonad: No such file or directory
    when i followed the arch wiki and just used xmonad in the .xinitrc file, a bank screen is shown and these errors occurs:
    /home/user/.xmonad/xmonad-i386-linux: executeFile: does not exist ( No such file or directory )
    I followed the instructions at xmonad.org and the arch wiki but why isn't a file there? how do I start it in arch?
    Here's my xorg config file
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "ServerFlags"
    Option "DontZap" "false"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "record"
    Load "glx"
    Load "dri2"
    Load "dri"
    Load "dbe"
    Load "extmod"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    HorizSync 30.0 - 130.0
    VertRefresh 50.0 - 100.0
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "ColorKey" # <i>
    #Option "CacheLines" # <i>
    #Option "Dac6Bit" # [<bool>]
    #Option "DRI" # [<bool>]
    #Option "NoDDC" # [<bool>]
    #Option "ShowCache" # [<bool>]
    #Option "XvMCSurfaces" # <i>
    #Option "PageFlip" # [<bool>]
    Identifier "Card0"
    Driver "intel"
    VendorName "Intel Corporation"
    BoardName "Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller"
    BusID "PCI:0:2:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    hardware used is intel corporation mobile 945GM/GMS/GME 943/940 GML Express Integrated graphics controller
    Last edited by unregistered (2009-05-30 11:51:57)

    bender02 wrote:
    Sorry, I haven't been online.
    What do you mean by 'it works but gives me this error'?
    The way xmonad works is that if you have your own configuration ~/.xmonad/xmonad.hs, then when you run it, xmonad automatically recompiles itself and puts the resulting binary into ~/.xmonad/xmonad-i386-linux. So what the default xmonad binary does is that
    1) it checks whether your config ~/.xmonad/xmonad.hs has changed (if yes, it recompiles)
    2) it checks whether ~/.xmonad/xmonad-i386-linux is a binary that can be run (if yes, it runs it)
    3) runs xmonad with the default config
    So I think what happens with you is the case 3).
    Note that when xmonad runs with the default config, you won't see anything special (you need to run some programs, or check in the console whether the process actually runs. If it does run, then all is fine and you should ignore that error).
    hey thanks, that clears things up alot but since I've used the pacman to install xmonad from the community repository, where can I find the default configuration file that it loads?
    and the ~/.xmonad directory does not exist currently, I assume I would have to manually create it?
    btw, where did u learn all this from?
    and thanks once again

  • [SOLVED] Problem with ghc and xmonad

    Hi !
    Just to give you the problem I encounter today when doing an upgrade (pacman -Syu) :
    Packages updates are : ghc-7.10.1-1 haskell-data-default-0.5.3-7  haskell-data-default-class-0.0.1-6 haskell-data-default-instances-base-0.0.1-8  haskell-data-default-instances-containers-0.0.1-6 haskell-data-default-instances-dlist-0.0.1-7  haskell-data-default-instances-old-locale-0.0.1-6  haskell-dlist-0.7.1.1-1 haskell-extensible-exceptions-0.1.1.4-9  haskell-mtl-2.2.1-2  haskell-old-locale-1.0.0.7-4  haskell-old-time-1.1.0.3-4 haskell-random-1.1-2  haskell-utf8-string-1-1  haskell-x11-1.6.1.2-3  haskell-x11-xft-0.3.1-13 xmonad-0.11.1-2  xmonad-contrib-0.11.4-2
    Simple packages concerned : ghc / haskell* / xmonad
    Errors are :
    ==> Unregistering cabalized packages...
    unregistering data-default-instances-base-0.0.1 would break the following packages: xmonad-contrib-0.11.3 X11-xft-0.3.1 xmonad-0.11 X11-1.6.1.2 data-default-0.5.3 (ignoring)
    ==> Done.
    update ghc
    ==> All cabalized packages need to be reinstalled now.
    ghc-pkg: cannot find package data-default-class-0.0.1
    Warning: Cannot read data-default/data-default.haddock:
    Interface file is of wrong version: data-default/data-default.haddock
    Skipping this interface.
    All haskell* packages with same errors as above.
    And for xmonad :
    ghc-pkg: cannot find package xmonad-0.11
    ghc-pkg: cannot find package xmonad-contrib-0.11.3
    xmonad-contrib-0.11.4: Warning: haddock-interfaces: /usr/share/doc/x86_64-linux-ghc-7.10.1/xmonad-contrib-0.11.4/html/xmonad-contrib.haddock doesn't exist or isn't a file
    Solution that worked for me :
    Uninstall all packages depending on ghc  (but not ghc):
    pacman -R haskell-data-default haskell-data-default-class haskell-data-default-instances-base haskell-data-default-instances-containers haskell-data-default-instances-dlist haskell-data-default-instances-old-locale haskell-dlist haskell-extensible-exceptions haskell-mtl haskell-old-locale haskell-old-time haskell-random haskell-utf8-string haskell-x11 haskell-x11-xft xmonad xmonad-contrib
    Re-installation of ghc :
    pacman -S ghc
    Installation of all packages :
    pacman -S haskell-data-default haskell-data-default-class haskell-data-default-instances-base haskell-data-default-instances-containers haskell-data-default-instances-dlist haskell-data-default-instances-old-locale haskell-dlist haskell-extensible-exceptions haskell-mtl haskell-old-locale haskell-old-time haskell-random haskell-utf8-string haskell-x11 haskell-x11-xft xmonad xmonad-contrib
    This time without any errors.
    Inspired by this topic explaining that all packages should be upgraded together.
    Maybe there is an easier solution, but I give my contribution .

    Yeah, just after those messages and without rebooting, I did an :
    xmonad --recompile
    And errors occurs (module not found for example).
    All xmonad packages depending on ghc were encountering the error : "command not executed" juste after the "cannot find package" while updating those packages.
    You're right, I tried to just launch again an installation (with pacman -S) of those packages but got same "warning" and error. Then I uninstalled and installed it like I said to not get any errors nor warnings.

  • Problem with window focus in xmonad

    Hi!
    I have the following problem with xmonad:
    Suppose I do the following:
    1) go to fullscreen view
    2) Start an application app1 e.g. evince
    3) start another application on the same workspace app2 e.g. okular
    4) open in app2 a dialogue (e.g. a "file open" dialogue)
    5) press mod + tab until app1 is in the background of the dialogue
    (which is floated)
    6) click on the dialogue-window.
    Now the "background window" changes from app1 to app2. Is there a way
    to disable such a behaviour?
    Thanks
    michael
    Last edited by cm100 (2010-06-12 07:01:38)

    Hi
    It's not necessary to use fm WRITE_FORM, if the data to be written are placed in a window but not assigned to a text element, they will be written automatically.
    So try to check if the data are in text element in your sapscript
    Max

  • Problem with Xmonad, laptop & presentation

    Hi,
    I am trying to figure out how I can have Xmonad show a presentation both on the laptop screen as well as on the projector.
    At this moment I can only either show the presentation on the projector or the laptop, but not both at the same time except
    when I tell xrandr to clone the laptop screen. However cloning the laptop screen is (atm) not an option because the laptop
    screen has a wide screen resolution which the projector does not support. This causes the presentation to only show partially.
    I also tried to place a copy of a window onto 3 workspaces at the same time in the hope that through xrandr that it would
    show the workspace on the right or left. However this also didn't work.
    Does anyone have any idea how to make Xmonad show the focussed window on 2 screens at the same time?
    If someone happens to have a good laptop configuration that I could try that would be great ;-)
    Cheers,
    Neburski
    ps: I have a configuration that works pretty well except the presentation thingy is a problem.
    Last edited by Neburski (2010-03-31 18:41:59)

    I just struggled with this problem myself today. I found out that Nvidia's twinview can clone display output, but widescreen laptop + 4:3 beamer means that part of the presentation falls beyond the screen. I now change the resolution of my laptop screen to that of the beamer. Not ideal, but it works.

  • [BUGGED] xmonad tri-screen non-xinerama problems

    Hello All!
    New Archer here.  I'm really enjoying playing with Arch.  Ran it about a week on a VM, and then promptly backed up/tore up/re-created my 3 TB RAID array as a shrine in deciation to its glory.  I haven't posted much along the process, because I've generally been able to put things together to my liking other than a few minor setbacks that I mostly managed to handle myself.  I have even gave Arch the coveted position of my "Laptop Linux."  I have a slightly odd setup and it seems to be tied in with an issue that I am having, so I thought I might post here, especially since some of you seem to be xmonad users.
    The Paragraph
    Most wm's seem to handle non-Xinerama multi-display fine (I've been trying out as many as I could find since switching over to Arch.  I figured new Linux/new Look).  It seems that xmonad handles Xinerama better but has a less friendly non-Xinerama out of the box experience, and it is terribly hard to find the information I am after since when I go looking for multi-monitor resources, I find alot about Xinerama and praise for its Xinerama way of doing things.  Apparently, you still can't enable Composite and Xinerama at the same time, and in general, I prefer funny fade effects and what not to being able to move windows from screen to screen so have opted for a standard non-Xinerama multi-card, multi-display setup of xorg.
    Bullet Points
    1 - Minor Problem:  xmonad only runs on one screen if I don't enable Xinerama
    2 - Entertwined Problem:  Composite extension becomes disabled if I enable Xinerama
    3 - Other Entertwined Problem:  Most wm's I try if they don't support dual screen natively, I can simply put calls in my .xinitrc to load on the various display (ie. 'DISPLAY=:0.2 wmii &; DISPLAY=:0.1 wmii&; exec wmii'), and it's no big.  If I try that with xmonad, the session on DISPLAY :0.0 won't give up control of the keyboard to the displays on the other monitors.  That's pretty weird, since it gives up control to my unmanaged windows just fine, or gives up control to another WM (as I type this, I have openbox managing my second monitor so I have an easy way to resize windows and such, but that is a somewhat imperfect solution in my opinion).  If I leave the screens unmanaged , I can launch apps on them easily enough by 'DISPLAY=:0.1 thunderbird' (like I do with openbox managing them if I don't want to use the menu) through command-line or scripts, but there is no way to move the apps or resize them or anything without some WM (like openbox) attached to the DISPLAY.
    4 - Minor Entertwined Problem That Makes This Whole Mess Harder To Ignore:
    When you go off the screen to an unmanaged window or a window managed by another window manager, apparently xmonad continues to think you are focused on the app that you hovered over last on your way to the other screen (ie. if I go over to Thunderbird now, xmonad will leave the active border around Firefox since I have it on the left side of my primary monitor and the other screen is to the left).  This is no big, although I would prefer it to gray out or whatever.  At the same time, xmobar displays that I am still over my Firefox window.  I am fine with it not knowing that I am over messing around in another WM or on an unmanaged screen.  The big problem is that when I bring the mouse back, it seems to get confused about whether I left or not, and doesn't pass focus back to the app in question.  It still thinks the app has focus (according to its border and xmobar), but keystrokes still go to the other screen and the window on the first screen will no longer even directly respond to mouse clicks.  It is easy to fix, I can simply move to any other window on the same screen, and then back to my firefox and things work fine.  I know that's a weird wall of text, so a quick explanation:
    If I take my mouse off the screen to the left, passing over Firefox, I end up on my Screen 1 that is currently displaying Thunderbird and managed by Openbox.  I can then click message, type things, all no problem.  If I move my mouse back to the Firefox screen, it looks like it is active, but I cannot click on anything (no links work, the buttons that control formatting of this message darken when I hover over them but do nothing on click, the check boxes at the bottom of this compose message window darken but do not respond to clicks, etc).  If I do nothing else other than but my mouse over one of my terminal windows (which will receive the focus border and receive input fine), and then move it back to Firefox - everything in Firefox will at that point work great.
    That last note is the primary reason I can't just let another WM loose on my secondary display and go about my day (I mean, I tend to just leave e-mail up on the thing, and I suppose a valid argument can be made for having a floating manager on your second screen anyway).  It's most annoying when I just barely go off the edge of the main monitor by mistake, say on my way to a tab or something, and can't click my tabs anymore without dragging the mouse back to a terminal and back over to Firefox.  Of course, I would be fine with messing with xmonad on all my screens really if I didn't have to turn off my Composite extension to do it.
    One easy solution is to just use Awesome.  It looks nice and seems to offer some of the same features, but I kind of like xmonad's way of configuring things and the idea that my configs seemingly shouldn't break on minor version numbers.  Awesome has already bit me in my playing around by making widget obselete two days after I put the widgets in my config file, and it seems they have a history of this type of action. 
    I can happily provide any configuration files on request.  My xorg.conf is probably of the most interest, I would think, but if I knew how to fix this, I wouldn't be on here asking for help.  It doesn't appear to be related to xmonad.hs, since I can use the default or a heavily customized one and get the same behavior.  There might be a way to fix the problem somehow in xmonad.hs; I don't know.
    Oh well, sorry my first post was such a wall of text, but I wanted to provide a solid idea of what was going on here.  Any help would be greatly appreciated.
    Lewis
    Last edited by llcawthorne (2009-11-18 02:26:08)

    vogt wrote:
    I have had composite enabled with xinerama.
    Some graphics drivers restrict the size of all screens to fit within 2048x2048 pixels if you still want compositing, but if you have 3 monitors, it is unlikely that that you can find an arrangement that satisfies that driver/hardware limitation.
    Yeah, 2048x2048 woudln't work for me.  My main monitor runs 1920x1200, secondary is 1680x1050, and the tv is at 1920x1080.
    Apparently since the xorg upgrade the other day, I can't even turn on Xinerama anymore.  I know it worked when I tested just to see if things worked in Xinerama mode the other day (but it automatically disabled Composite).  Now I can turn on Xinerama but I get a strange cursor flicker and segfault when trying to go to the other screen.  Apparently some other people have that problem with the latest x-server and xinerama with Nvidia, but I haven't looked into fixing it, since I don't tend to use Xinerama anyway.  It makes testing some solutions a bit harder though not being able to temporarily turn it on.
    I have done some more testing though.  With my current multi-screen Xinerama off X-layout, things definitely work as expected in other Window managers.  I have played around in GNOME, compiz, fluxbox, openbox, awesome and ratpoison with this separate screen X-layout without problems. 
    The problem seems to be more with xmonad accepting the cursor than letting it go.  When I run :0.1 unmanaged or with another window manager, I can switch over to the other display with 100% reliability, but only have the problem when coming back to my xmonad display.  However, if I spawn xmonad to :0.1 in addition to having xmonad on :0.0, I almost always have problems switching over to :0.1, but once I get switched over to :0.1, I have trouble coming back to :0.0.
    Also, strangely enough, I can reliably switch to any other display with two windows on it.  I have taken to running a clock on display :0.1, since 90% of the time when I switch over to my e-mail client I will not get proper focus.  I can fix this 100% of the time by mousing over the clock, then back over the e-mail client.  To come back to my main screen, I will not get focus on my browser 90% of the time, but can reliably get focus to it 100% of the time there is a problem by mousing over one of the terminals to the right of my browser and then coming back to the browser.  Since the problem is predictable, I can work around it, but either way it is annoying.
    The problem is easy to duplicate with both a default xmonad.hs, another xmonad.hs pulled off the site (tried it with andrea's and arossato's, and with my personal customized and overly large xmonad.hs that I have been trying out various features with.
    Curiously enough, since it was a focus problem, I though "maybe if it updated focus more often?" and I tried 'import XMonad.Actions.UpdateFocus" with the proper startupHook's and handleEventHooks to make it attempt to update focus whenever you move the mouse within a window.  This did nothing to alleviate the problem, although it obviously took ince I noticed the change in focus handling when I didn't leave a monitor.
    Oh, and as another test to see if it might relate back to my drivers somehow, I removed nvidia's proprietary drivers and installed Nouveau.  While the Nouveau drivers are pretty neat (the fast frame buffer switching is fun!), I found them annoying since I don't know how to make my console come up on the right monitor with them, but that is unrelated.  I changed around my config and brought up X and was able to duplicate the problem exactly with the alternate drivers (but same configuration otherwise). 
    And lastly, I booted to my Gentoo install (that does use the same hardware are xorg.conf).  I can't get the 0.9 xmonad from the overlay to compile on it for whatever reason, so it conveniently has 0.8 installed.  I see the same behavior with a default config and a sample config swiped from the website (I cannot test with my custom config, since it has multiple 0.9 imports in it, but I have no reason to believe it would react differently).
    I welcome any ideas.
    Lewis Cawthorne

  • Problem logging out from xmonad

    Dear Everyone:
    I updated my system on monday 3/11, and since then have had the following strange behavior:  When I go to log out of my X session (by pressing super-shift-q, which sends the logout message through xmonad), my xdm login screen fails to appear as it should.  Instead, everything just seems to hang.  I have a blank screen, and hitting ctrl-alt-F2 (F3 or F4, etc. etc.) does not open a new terminal.
    I was too busy to deal with this last week, and so updated again today, hoping the problem would be fixed.  But the problem continues.
    I realize this is a vague post.  Could someone give me some guidance as to how I might go about diagnosing the problem.   (I thought of dmesg -- but of course I can't run it right after I've logged out when the problem seems to occur.)
    Thanks!
    -Stu

    Thanks for the response .nz.
    first of all, I've not been keeping good enough track of when this problem started relative to my updates to know where to look in my pacman logs.  However, I can be pretty detailed about everything else:
    Here is the current status of my system:
    1) I've uninstalled xdm entirely.
    2) I set the default target to multi-user (i.e. ran sudo systemctl enable multi-user.target)
    here is my .xinitrc:
    if [ -d /etc/X11/xinit/xinitrc.d]; then
    for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
    done
    unset f
    fi
    setxkbmap -option ctrl:swapcaps
    xrdb -merge .Xresources
    xsetroot -solid black
    exec xmonad
    and here is my xmonad.hs:
    import XMonad
    import XMonad.Hooks.ManageDocks -- imports stuff to keep bars/trays visible
    import XMonad.Util.Run(spawnPipe) -- imports spawnPipe through which we start xmobar
    import XMonad.Hooks.DynamicLog
    import System.IO
    main = do
    spawn "trayer --edge top --align right --SetDockType true --SetPartialStrut true --expand true --width 10 --height 12"
    spawn "dropboxd start"
    spawn "xmobar"
    xmonad $ defaultConfig
    { manageHook = manageDocks <+> myManageHook <+> manageHook defaultConfig
    , layoutHook = avoidStruts $ layoutHook defaultConfig
    , logHook = dynamicLogString defaultPP{ppCurrent = xmobarColor "blue" "gray", ppSep = "|", ppOrder = \(ws:_:t:_) -> [ws,t]} >>= xmonadPropLog
    , borderWidth = 5
    , terminal = "urxvt"
    , normalBorderColor = "#3399cc"
    , focusedBorderColor = "#33ff00"
    , modMask = mod4Mask
    , workspaces = ["1:shell","2:emacs","3:web","4:pdf","5:audio","6:draw","7","8"]
    myManageHook = composeAll
    [ className =? "Firefox" --> doShift "3:web"
    , className =? "URxvt" --> doShift "1:shell"
    , className =? "Emacs" --> doShift "2:emacs"
    , className =? "Audacious" --> doShift "5:audio"
    , className =? "Evince" --> doShift "4:pdf"
    , className =? "Inkscape" --> doShift "6:draw"
    Now, here is what I have done leading up to my current problem:
    1) started up, which resulted in me reaching the multiuser target, and thus a login prompt in a terminal
    2) logged in
    3) ran 'sudo echo "" > /var/log/Xorg.0.log' to make sure that everything that was going into the log file in the subsequent steps was from the coming session of X
    3) ran xinit.  This resulting in a fully working X session with xmonad acting exactly as I want it to
    4) hit super-shift-q (which is the key that is supposed to kill xmonad and the X server, and how I used to log out of my system when I was using xdm)
    The problem is what happens at that point:  The screen goes black, then I see a message on my screen that says "entering powersave mode".  At that point, the keyboard and mouse become unresponsive -- no pressing of keys seems to wake my machine up.  Ideally, I'd like this not to happen, and instead return to a login prompt after super-shift-q.
    my video card is AMD ATI RV530GL
    my video driver is xf86-video-ati
    Here is the Xorg.0.log resulting after I rebooted my machine back to the multi-user target:
    [ 1842.146]
    X.Org X Server 1.14.0
    Release Date: 2013-03-05
    [ 1842.152] X Protocol Version 11, Revision 0
    [ 1842.154] Build Operating System: Linux 3.8.2-1-ARCH i686
    [ 1842.157] Current Operating System: Linux rocdaddy 3.8.3-2-ARCH #1 SMP PREEMPT Sun Mar 17 13:38:16 CET 2013 i686
    [ 1842.157] Kernel command line: root=/dev/disk/by-uuid/d1ec8093-d3dc-4b9f-97c3-403c2ff83ea3 ro
    [ 1842.161] Build Date: 09 March 2013 11:46:22AM
    [ 1842.163]
    [ 1842.165] Current version of pixman: 0.28.2
    [ 1842.170] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 1842.170] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 1842.179] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Mar 21 11:26:48 2013
    [ 1842.227] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 1842.229] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 1842.369] (==) ServerLayout "Main"
    [ 1842.369] (**) |-->Screen "Screen0" (0)
    [ 1842.369] (**) | |-->Monitor "Monitor0"
    [ 1842.369] (**) | |-->Device "Card0"
    [ 1842.369] (**) |-->Screen "Screen1" (1)
    [ 1842.369] (**) | |-->Monitor "Monitor1"
    [ 1842.369] (**) | |-->Device "Card1"
    [ 1842.369] (**) Option "Xinerama" "true"
    [ 1842.369] (==) Automatically adding devices
    [ 1842.369] (==) Automatically enabling devices
    [ 1842.369] (==) Automatically adding GPU devices
    [ 1842.392] (**) Xinerama: enabled
    [ 1842.446] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 1842.446] Entry deleted from font path.
    [ 1842.508] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 1842.508] Entry deleted from font path.
    [ 1842.508] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 1842.508] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/
    [ 1842.508] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 1842.508] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 1842.525] (II) Loader magic: 0x825b620
    [ 1842.525] (II) Module ABI versions:
    [ 1842.526] X.Org ANSI C Emulation: 0.4
    [ 1842.526] X.Org Video Driver: 14.1
    [ 1842.526] X.Org XInput driver : 19.1
    [ 1842.526] X.Org Server Extension : 7.0
    [ 1842.526] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 1842.530] (--) PCI:*(0:7:0:0) 1002:71d2:1002:3b02 rev 0, Mem @ 0xc0000000/268435456, 0xdfbe0000/65536, I/O @ 0x0000dc00/256, BIOS @ 0x????????/131072
    [ 1842.530] (--) PCI: (0:7:0:1) 1002:71f2:1002:3b03 rev 0, Mem @ 0xdfbf0000/65536
    [ 1842.539] Initializing built-in extension Generic Event Extension
    [ 1842.542] Initializing built-in extension SHAPE
    [ 1842.544] Initializing built-in extension MIT-SHM
    [ 1842.546] Initializing built-in extension XInputExtension
    [ 1842.548] Initializing built-in extension XTEST
    [ 1842.550] Initializing built-in extension BIG-REQUESTS
    [ 1842.552] Initializing built-in extension SYNC
    [ 1842.554] Initializing built-in extension XKEYBOARD
    [ 1842.556] Initializing built-in extension XC-MISC
    [ 1842.557] Initializing built-in extension SECURITY
    [ 1842.559] Initializing built-in extension XINERAMA
    [ 1842.561] Initializing built-in extension XFIXES
    [ 1842.563] Initializing built-in extension RENDER
    [ 1842.564] Initializing built-in extension RANDR
    [ 1842.566] Initializing built-in extension COMPOSITE
    [ 1842.568] Initializing built-in extension DAMAGE
    [ 1842.570] Initializing built-in extension MIT-SCREEN-SAVER
    [ 1842.571] Initializing built-in extension DOUBLE-BUFFER
    [ 1842.573] Initializing built-in extension RECORD
    [ 1842.575] Initializing built-in extension DPMS
    [ 1842.576] Initializing built-in extension X-Resource
    [ 1842.578] Initializing built-in extension XVideo
    [ 1842.580] Initializing built-in extension XVideo-MotionCompensation
    [ 1842.581] Initializing built-in extension XFree86-VidModeExtension
    [ 1842.583] Initializing built-in extension XFree86-DGA
    [ 1842.584] Initializing built-in extension XFree86-DRI
    [ 1842.586] Initializing built-in extension DRI2
    [ 1842.586] (II) "glx" will be loaded by default.
    [ 1842.586] (II) LoadModule: "dri2"
    [ 1842.586] (II) Module "dri2" already built-in
    [ 1842.586] (II) LoadModule: "glamoregl"
    [ 1842.593] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 1842.647] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 1842.647] compiled for 1.14.0, module version = 0.5.0
    [ 1842.647] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1842.647] (II) LoadModule: "glx"
    [ 1842.770] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 1842.912] (II) Module glx: vendor="X.Org Foundation"
    [ 1842.912] compiled for 1.14.0, module version = 1.0.0
    [ 1842.912] ABI class: X.Org Server Extension, version 7.0
    [ 1842.912] (==) AIGLX enabled
    [ 1842.923] Loading extension GLX
    [ 1842.923] (II) LoadModule: "radeon"
    [ 1842.923] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 1843.107] (II) Module radeon: vendor="X.Org Foundation"
    [ 1843.107] compiled for 1.14.0, module version = 7.1.0
    [ 1843.107] Module class: X.Org Video Driver
    [ 1843.107] ABI class: X.Org Video Driver, version 14.1
    [ 1843.107] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE
    [ 1843.120] (--) using VT number 2
    [ 1843.145] (II) [KMS] Kernel modesetting enabled.
    [ 1843.145] (II) [KMS] Kernel modesetting enabled.
    [ 1843.145] (II) RADEON(0): Creating default Display subsection in Screen section
    "Screen0" for depth/fbbpp 24/32
    [ 1843.146] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 1843.146] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 1843.146] (==) RADEON(0): Default visual is TrueColor
    [ 1843.146] (==) RADEON(0): RGB weight 888
    [ 1843.146] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 1843.146] (--) RADEON(0): Chipset: "ATI FireGL V3400" (ChipID = 0x71d2)
    [ 1843.146] (II) Loading sub module "dri2"
    [ 1843.146] (II) LoadModule: "dri2"
    [ 1843.146] (II) Module "dri2" already built-in
    [ 1843.146] (II) Loading sub module "exa"
    [ 1843.146] (II) LoadModule: "exa"
    [ 1843.146] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 1843.214] (II) Module exa: vendor="X.Org Foundation"
    [ 1843.214] compiled for 1.14.0, module version = 2.6.0
    [ 1843.214] ABI class: X.Org Video Driver, version 14.1
    [ 1843.214] (II) RADEON(0): KMS Color Tiling: enabled
    [ 1843.214] (II) RADEON(0): KMS Color Tiling 2D: disabled
    [ 1843.214] (II) RADEON(0): KMS Pageflipping: enabled
    [ 1843.214] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 1843.246] (II) RADEON(0): Output DVI-0 using monitor section Monitor0
    [ 1843.310] (II) RADEON(0): EDID for output DVI-0
    [ 1843.310] (II) RADEON(0): Manufacturer: DEL Model: 405b Serial#: 1112233813
    [ 1843.311] (II) RADEON(0): Year: 2011 Week: 41
    [ 1843.311] (II) RADEON(0): EDID Version: 1.3
    [ 1843.311] (II) RADEON(0): Digital Display Input
    [ 1843.311] (II) RADEON(0): Max Image Size [cm]: horiz.: 38 vert.: 30
    [ 1843.311] (II) RADEON(0): Gamma: 2.20
    [ 1843.311] (II) RADEON(0): DPMS capabilities: StandBy Suspend Off
    [ 1843.311] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 1843.311] (II) RADEON(0): Default color space is primary color space
    [ 1843.311] (II) RADEON(0): First detailed timing is preferred mode
    [ 1843.311] (II) RADEON(0): redX: 0.640 redY: 0.330 greenX: 0.300 greenY: 0.600
    [ 1843.311] (II) RADEON(0): blueX: 0.150 blueY: 0.060 whiteX: 0.313 whiteY: 0.329
    [ 1843.311] (II) RADEON(0): Supported established timings:
    [ 1843.311] (II) RADEON(0): 720x400@70Hz
    [ 1843.311] (II) RADEON(0): 640x480@60Hz
    [ 1843.311] (II) RADEON(0): 640x480@75Hz
    [ 1843.311] (II) RADEON(0): 800x600@60Hz
    [ 1843.311] (II) RADEON(0): 800x600@75Hz
    [ 1843.311] (II) RADEON(0): 1024x768@60Hz
    [ 1843.311] (II) RADEON(0): 1024x768@75Hz
    [ 1843.311] (II) RADEON(0): 1280x1024@75Hz
    [ 1843.311] (II) RADEON(0): Manufacturer's mask: 0
    [ 1843.311] (II) RADEON(0): Supported standard timings:
    [ 1843.311] (II) RADEON(0): #0: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 1843.311] (II) RADEON(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 1843.311] (II) RADEON(0): Supported detailed timing:
    [ 1843.311] (II) RADEON(0): clock: 108.0 MHz Image Size: 376 x 301 mm
    [ 1843.311] (II) RADEON(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0
    [ 1843.311] (II) RADEON(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
    [ 1843.311] (II) RADEON(0): Serial No: M39MD1AABKWU
    [ 1843.311] (II) RADEON(0): Monitor name: DELL P190S
    [ 1843.311] (II) RADEON(0): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 81 kHz, PixClock max 145 MHz
    [ 1843.311] (II) RADEON(0): EDID (in hex):
    [ 1843.311] (II) RADEON(0): 00ffffffffffff0010ac5b4055574b42
    [ 1843.311] (II) RADEON(0): 2915010380261e78eeee95a3544c9926
    [ 1843.311] (II) RADEON(0): 0f5054a54b00714f8180010101010101
    [ 1843.311] (II) RADEON(0): 010101010101302a009851002a403070
    [ 1843.311] (II) RADEON(0): 1300782d1100001e000000ff004d3339
    [ 1843.311] (II) RADEON(0): 4d44314141424b57550a000000fc0044
    [ 1843.311] (II) RADEON(0): 454c4c2050313930530a2020000000fd
    [ 1843.311] (II) RADEON(0): 00384c1e510e000a2020202020200016
    [ 1843.312] (II) RADEON(0): Printing probed modes for output DVI-0
    [ 1843.312] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP)
    [ 1843.312] (II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 1843.312] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 1843.312] (II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 1843.312] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 1843.312] (II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 1843.312] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 1843.312] (II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 1843.312] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 1843.312] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 1843.312] (II) RADEON(0): Output DVI-0 connected
    [ 1843.312] (II) RADEON(0): Using exact sizes for initial modes
    [ 1843.312] (II) RADEON(0): Output DVI-0 using initial mode 1280x1024
    [ 1843.312] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 1843.312] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:8000000 visible:76f6000
    [ 1843.312] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 1843.312] (==) RADEON(0): DPI set to (96, 96)
    [ 1843.312] (II) Loading sub module "fb"
    [ 1843.312] (II) LoadModule: "fb"
    [ 1843.312] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 1843.364] (II) Module fb: vendor="X.Org Foundation"
    [ 1843.364] compiled for 1.14.0, module version = 1.0.0
    [ 1843.364] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1843.364] (II) Loading sub module "ramdac"
    [ 1843.364] (II) LoadModule: "ramdac"
    [ 1843.364] (II) Module "ramdac" already built-in
    [ 1843.364] (II) RADEON(1): Creating default Display subsection in Screen section
    "Screen1" for depth/fbbpp 24/32
    [ 1843.364] (==) RADEON(1): Depth 24, (--) framebuffer bpp 32
    [ 1843.365] (II) RADEON(1): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 1843.365] (==) RADEON(1): Default visual is TrueColor
    [ 1843.365] (==) RADEON(1): RGB weight 888
    [ 1843.365] (II) RADEON(1): Using 8 bits per RGB (8 bit DAC)
    [ 1843.365] (--) RADEON(1): Chipset: "ATI FireGL V3400" (ChipID = 0x71d2)
    [ 1843.365] (II) RADEON(1): reusing fd for second head
    [ 1843.365] (II) Loading sub module "dri2"
    [ 1843.365] (II) LoadModule: "dri2"
    [ 1843.365] (II) Module "dri2" already built-in
    [ 1843.365] (II) Loading sub module "exa"
    [ 1843.365] (II) LoadModule: "exa"
    [ 1843.365] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 1843.365] (II) Module exa: vendor="X.Org Foundation"
    [ 1843.365] compiled for 1.14.0, module version = 2.6.0
    [ 1843.365] ABI class: X.Org Video Driver, version 14.1
    [ 1843.365] (II) RADEON(1): KMS Color Tiling: enabled
    [ 1843.365] (II) RADEON(1): KMS Color Tiling 2D: disabled
    [ 1843.365] (II) RADEON(1): KMS Pageflipping: enabled
    [ 1843.365] (II) RADEON(1): SwapBuffers wait for vsync: enabled
    [ 1843.429] (II) RADEON(1): Output DVI-1 using monitor section Monitor1
    [ 1843.461] (II) RADEON(1): EDID for output DVI-1
    [ 1843.461] (II) RADEON(1): Manufacturer: DEL Model: a016 Serial#: 878008147
    [ 1843.461] (II) RADEON(1): Year: 2006 Week: 22
    [ 1843.461] (II) RADEON(1): EDID Version: 1.3
    [ 1843.461] (II) RADEON(1): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    [ 1843.461] (II) RADEON(1): Sync: Separate Composite SyncOnGreen
    [ 1843.461] (II) RADEON(1): Max Image Size [cm]: horiz.: 52 vert.: 33
    [ 1843.461] (II) RADEON(1): Gamma: 2.20
    [ 1843.461] (II) RADEON(1): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    [ 1843.461] (II) RADEON(1): Default color space is primary color space
    [ 1843.461] (II) RADEON(1): First detailed timing is preferred mode
    [ 1843.461] (II) RADEON(1): redX: 0.640 redY: 0.330 greenX: 0.300 greenY: 0.600
    [ 1843.461] (II) RADEON(1): blueX: 0.150 blueY: 0.060 whiteX: 0.312 whiteY: 0.329
    [ 1843.461] (II) RADEON(1): Supported established timings:
    [ 1843.461] (II) RADEON(1): 720x400@70Hz
    [ 1843.461] (II) RADEON(1): 640x480@60Hz
    [ 1843.461] (II) RADEON(1): 640x480@75Hz
    [ 1843.461] (II) RADEON(1): 800x600@60Hz
    [ 1843.461] (II) RADEON(1): 800x600@75Hz
    [ 1843.461] (II) RADEON(1): 1024x768@60Hz
    [ 1843.461] (II) RADEON(1): 1024x768@75Hz
    [ 1843.461] (II) RADEON(1): 1280x1024@75Hz
    [ 1843.461] (II) RADEON(1): Manufacturer's mask: 0
    [ 1843.461] (II) RADEON(1): Supported standard timings:
    [ 1843.461] (II) RADEON(1): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 1843.461] (II) RADEON(1): #1: hsize: 1600 vsize 1200 refresh: 60 vid: 16553
    [ 1843.461] (II) RADEON(1): #2: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 1843.462] (II) RADEON(1): #3: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 1843.462] (II) RADEON(1): Supported detailed timing:
    [ 1843.462] (II) RADEON(1): clock: 154.0 MHz Image Size: 519 x 324 mm
    [ 1843.462] (II) RADEON(1): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0
    [ 1843.462] (II) RADEON(1): v_active: 1200 v_sync: 1203 v_sync_end 1209 v_blanking: 1235 v_border: 0
    [ 1843.462] (II) RADEON(1): Serial No: CC30265V4UWS
    [ 1843.462] (II) RADEON(1): Monitor name: DELL 2407WFP
    [ 1843.462] (II) RADEON(1): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
    [ 1843.462] (II) RADEON(1): EDID (in hex):
    [ 1843.462] (II) RADEON(1): 00ffffffffffff0010ac16a053575534
    [ 1843.462] (II) RADEON(1): 161001030e342178eeee91a3544c9926
    [ 1843.462] (II) RADEON(1): 0f5054a54b008180a940714fb3000101
    [ 1843.462] (II) RADEON(1): 010101010101283c80a070b023403020
    [ 1843.462] (II) RADEON(1): 360007442100001a000000ff00434333
    [ 1843.462] (II) RADEON(1): 30323635563455575320000000fc0044
    [ 1843.462] (II) RADEON(1): 454c4c20323430375746500a000000fd
    [ 1843.462] (II) RADEON(1): 00384c1e5311000a20202020202000d6
    [ 1843.462] (II) RADEON(1): Printing probed modes for output DVI-1
    [ 1843.462] (II) RADEON(1): Modeline "1920x1200"x60.0 154.00 1920 1968 2000 2080 1200 1203 1209 1235 +hsync -vsync (74.0 kHz eP)
    [ 1843.462] (II) RADEON(1): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 1843.462] (II) RADEON(1): Output DVI-1 connected
    [ 1843.462] (II) RADEON(1): Using exact sizes for initial modes
    [ 1843.462] (II) RADEON(1): Output DVI-1 using initial mode 1920x1200
    [ 1843.462] (II) RADEON(1): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 1843.462] (II) RADEON(1): mem size init: gart size :1fdff000 vram size: s:8000000 visible:76f6000
    [ 1843.462] (II) RADEON(1): EXA: Driver will allow EXA pixmaps in VRAM
    [ 1843.462] (==) RADEON(1): DPI set to (96, 96)
    [ 1843.462] (II) Loading sub module "fb"
    [ 1843.462] (II) LoadModule: "fb"
    [ 1843.463] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 1843.463] (II) Module fb: vendor="X.Org Foundation"
    [ 1843.463] compiled for 1.14.0, module version = 1.0.0
    [ 1843.463] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1843.463] (II) Loading sub module "ramdac"
    [ 1843.463] (II) LoadModule: "ramdac"
    [ 1843.463] (II) Module "ramdac" already built-in
    [ 1843.463] (--) Depth 24 pixmap format is 32 bpp
    [ 1843.464] (II) RADEON(0): [DRI2] Setup complete
    [ 1843.464] (II) RADEON(0): [DRI2] DRI driver: r300
    [ 1843.464] (II) RADEON(0): [DRI2] VDPAU driver: r300
    [ 1843.464] (II) RADEON(0): Front buffer size: 5120K
    [ 1843.464] (II) RADEON(0): VRAM usage limit set to 105012K
    [ 1843.479] (==) RADEON(0): Backing store disabled
    [ 1843.479] (II) RADEON(0): Direct rendering enabled
    [ 1843.479] (II) RADEON(0): Render acceleration enabled for R300/R400/R500 type cards.
    [ 1843.479] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 1843.479] (II) EXA(0): Driver registered support for the following operations:
    [ 1843.479] (II) Solid
    [ 1843.479] (II) Copy
    [ 1843.479] (II) Composite (RENDER acceleration)
    [ 1843.479] (II) UploadToScreen
    [ 1843.479] (II) DownloadFromScreen
    [ 1843.479] (II) RADEON(0): Acceleration enabled
    [ 1843.479] (==) RADEON(0): DPMS enabled
    [ 1843.479] (==) RADEON(0): Silken mouse enabled
    [ 1843.483] (II) RADEON(0): Set up textured video
    [ 1843.483] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 1843.483] (II) RADEON(0): [XvMC] Extension initialized.
    [ 1843.483] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 1843.492] (--) RandR disabled
    [ 1843.492] (II) RADEON(1): [DRI2] Setup complete
    [ 1843.492] (II) RADEON(1): [DRI2] DRI driver: r300
    [ 1843.492] (II) RADEON(1): [DRI2] VDPAU driver: r300
    [ 1843.492] (II) RADEON(1): Front buffer size: 9000K
    [ 1843.492] (II) RADEON(1): VRAM usage limit set to 101520K
    [ 1843.492] (==) RADEON(1): Backing store disabled
    [ 1843.492] (II) RADEON(1): Direct rendering enabled
    [ 1843.492] (II) RADEON(1): Render acceleration enabled for R300/R400/R500 type cards.
    [ 1843.492] (II) EXA(1): Driver allocated offscreen pixmaps
    [ 1843.492] (II) EXA(1): Driver registered support for the following operations:
    [ 1843.492] (II) Solid
    [ 1843.492] (II) Copy
    [ 1843.492] (II) Composite (RENDER acceleration)
    [ 1843.492] (II) UploadToScreen
    [ 1843.492] (II) DownloadFromScreen
    [ 1843.492] (II) RADEON(1): Acceleration enabled
    [ 1843.492] (==) RADEON(1): DPMS enabled
    [ 1843.492] (==) RADEON(1): Silken mouse enabled
    [ 1843.492] (II) RADEON(1): Set up textured video
    [ 1843.492] (II) RADEON(1): [XvMC] Associated with Radeon Textured Video.
    [ 1843.492] (II) RADEON(1): [XvMC] Extension initialized.
    [ 1843.492] (II) RADEON(1): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 1843.493] (--) RandR disabled
    [ 1847.046] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 1847.046] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 1847.046] (II) AIGLX: enabled GLX_ARB_create_context
    [ 1847.050] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 1847.050] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 1847.050] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 1847.050] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 1847.051] (II) AIGLX: Loaded and initialized r300
    [ 1847.051] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 1847.052] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 1847.052] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 1847.052] (II) AIGLX: enabled GLX_ARB_create_context
    [ 1847.052] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 1847.052] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 1847.052] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 1847.052] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 1847.053] (II) AIGLX: Loaded and initialized r300
    [ 1847.053] (II) GLX: Initialized DRI2 GL provider for screen 1
    [ 1847.880] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 1847.880] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 1847.880] (II) LoadModule: "evdev"
    [ 1847.881] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 1847.939] (II) Module evdev: vendor="X.Org Foundation"
    [ 1847.939] compiled for 1.14.0, module version = 2.7.3
    [ 1847.939] Module class: X.Org XInput Driver
    [ 1847.939] ABI class: X.Org XInput driver, version 19.1
    [ 1847.939] (II) Using input driver 'evdev' for 'Power Button'
    [ 1847.939] (**) Power Button: always reports core events
    [ 1847.939] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 1847.939] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 1847.939] (--) evdev: Power Button: Found keys
    [ 1847.939] (II) evdev: Power Button: Configuring as keyboard
    [ 1847.939] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
    [ 1847.939] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 1847.939] (**) Option "xkb_rules" "evdev"
    [ 1847.939] (**) Option "xkb_model" "evdev"
    [ 1847.939] (**) Option "xkb_layout" "us"
    [ 1847.974] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 1847.975] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 1847.975] (II) Using input driver 'evdev' for 'Power Button'
    [ 1847.975] (**) Power Button: always reports core events
    [ 1847.975] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 1847.975] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 1847.975] (--) evdev: Power Button: Found keys
    [ 1847.975] (II) evdev: Power Button: Configuring as keyboard
    [ 1847.975] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
    [ 1847.975] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 1847.975] (**) Option "xkb_rules" "evdev"
    [ 1847.975] (**) Option "xkb_model" "evdev"
    [ 1847.975] (**) Option "xkb_layout" "us"
    [ 1847.975] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 1847.976] (II) config/udev: Adding input device HDA Intel Line (/dev/input/event5)
    [ 1847.976] (II) No input driver specified, ignoring this device.
    [ 1847.976] (II) This device may have been added with another device file.
    [ 1847.977] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event6)
    [ 1847.977] (II) No input driver specified, ignoring this device.
    [ 1847.977] (II) This device may have been added with another device file.
    [ 1847.977] (II) config/udev: Adding input device HDA Intel Front Headphone (/dev/input/event7)
    [ 1847.977] (II) No input driver specified, ignoring this device.
    [ 1847.977] (II) This device may have been added with another device file.
    [ 1847.978] (II) config/udev: Adding input device HDA Intel Line Out (/dev/input/event8)
    [ 1847.978] (II) No input driver specified, ignoring this device.
    [ 1847.978] (II) This device may have been added with another device file.
    [ 1847.978] (II) config/udev: Adding input device Logitech Optical USB Mouse (/dev/input/event3)
    [ 1847.978] (**) Logitech Optical USB Mouse: Applying InputClass "evdev pointer catchall"
    [ 1847.978] (II) Using input driver 'evdev' for 'Logitech Optical USB Mouse'
    [ 1847.978] (**) Logitech Optical USB Mouse: always reports core events
    [ 1847.978] (**) evdev: Logitech Optical USB Mouse: Device: "/dev/input/event3"
    [ 1847.978] (--) evdev: Logitech Optical USB Mouse: Vendor 0x46d Product 0xc016
    [ 1847.978] (--) evdev: Logitech Optical USB Mouse: Found 3 mouse buttons
    [ 1847.978] (--) evdev: Logitech Optical USB Mouse: Found scroll wheel(s)
    [ 1847.978] (--) evdev: Logitech Optical USB Mouse: Found relative axes
    [ 1847.978] (--) evdev: Logitech Optical USB Mouse: Found x and y relative axes
    [ 1847.978] (II) evdev: Logitech Optical USB Mouse: Configuring as mouse
    [ 1847.979] (II) evdev: Logitech Optical USB Mouse: Adding scrollwheel support
    [ 1847.979] (**) evdev: Logitech Optical USB Mouse: YAxisMapping: buttons 4 and 5
    [ 1847.979] (**) evdev: Logitech Optical USB Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 1847.979] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/input/input3/event3"
    [ 1847.979] (II) XINPUT: Adding extended input device "Logitech Optical USB Mouse" (type: MOUSE, id 8)
    [ 1847.979] (II) evdev: Logitech Optical USB Mouse: initialized for relative axes.
    [ 1847.979] (**) Logitech Optical USB Mouse: (accel) keeping acceleration scheme 1
    [ 1847.979] (**) Logitech Optical USB Mouse: (accel) acceleration profile 0
    [ 1847.979] (**) Logitech Optical USB Mouse: (accel) acceleration factor: 2.000
    [ 1847.979] (**) Logitech Optical USB Mouse: (accel) acceleration threshold: 4
    [ 1847.980] (II) config/udev: Adding input device Logitech Optical USB Mouse (/dev/input/mouse0)
    [ 1847.980] (II) No input driver specified, ignoring this device.
    [ 1847.980] (II) This device may have been added with another device file.
    [ 1847.980] (II) config/udev: Adding input device DELL DELL USB Keyboard (/dev/input/event4)
    [ 1847.980] (**) DELL DELL USB Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 1847.980] (II) Using input driver 'evdev' for 'DELL DELL USB Keyboard'
    [ 1847.980] (**) DELL DELL USB Keyboard: always reports core events
    [ 1847.980] (**) evdev: DELL DELL USB Keyboard: Device: "/dev/input/event4"
    [ 1847.980] (--) evdev: DELL DELL USB Keyboard: Vendor 0x413c Product 0x2005
    [ 1847.980] (--) evdev: DELL DELL USB Keyboard: Found keys
    [ 1847.980] (II) evdev: DELL DELL USB Keyboard: Configuring as keyboard
    [ 1847.980] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb4/4-2/4-2:1.0/input/input4/event4"
    [ 1847.981] (II) XINPUT: Adding extended input device "DELL DELL USB Keyboard" (type: KEYBOARD, id 9)
    [ 1847.981] (**) Option "xkb_rules" "evdev"
    [ 1847.981] (**) Option "xkb_model" "evdev"
    [ 1847.981] (**) Option "xkb_layout" "us"
    [ 1847.982] (II) config/udev: Adding input device Wacom Bamboo Connect Pen (/dev/input/event9)
    [ 1847.982] (**) Wacom Bamboo Connect Pen: Applying InputClass "evdev tablet catchall"
    [ 1847.982] (**) Wacom Bamboo Connect Pen: Applying InputClass "Wacom class"
    [ 1847.982] (II) LoadModule: "wacom"
    [ 1847.982] (II) Loading /usr/lib/xorg/modules/input/wacom_drv.so
    [ 1848.043] (II) Module wacom: vendor="X.Org Foundation"
    [ 1848.043] compiled for 1.14.0, module version = 0.20.0
    [ 1848.043] Module class: X.Org XInput Driver
    [ 1848.043] ABI class: X.Org XInput driver, version 19.1
    [ 1848.044] (II) Using input driver 'wacom' for 'Wacom Bamboo Connect Pen'
    [ 1848.044] (**) Wacom Bamboo Connect Pen: always reports core events
    [ 1848.044] (**) Option "Device" "/dev/input/event9"
    [ 1848.044] (II) Wacom Bamboo Connect Pen: type not specified, assuming 'stylus'.
    [ 1848.044] (II) Wacom Bamboo Connect Pen: other types will be automatically added.
    [ 1848.044] (--) Wacom Bamboo Connect Pen stylus: using pressure threshold of 27 for button 1
    [ 1848.044] (--) Wacom Bamboo Connect Pen stylus: Wacom Unknown USB tablet maxX=14720 maxY=9200 maxZ=1023 resX=100000 resY=100000 tilt=enabled
    [ 1848.044] (II) Wacom Bamboo Connect Pen stylus: hotplugging dependent devices.
    [ 1848.044] (EE) Wacom Bamboo Connect Pen stylus: Invalid type 'cursor' for this device.
    [ 1848.044] (EE) Wacom Bamboo Connect Pen stylus: Invalid type 'touch' for this device.
    [ 1848.044] (EE) Wacom Bamboo Connect Pen stylus: Invalid type 'pad' for this device.
    [ 1848.044] (II) Wacom Bamboo Connect Pen stylus: hotplugging completed.
    [ 1848.046] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.3/usb5/5-1/5-1:1.0/input/input9/event9"
    [ 1848.046] (II) XINPUT: Adding extended input device "Wacom Bamboo Connect Pen stylus" (type: STYLUS, id 10)
    [ 1848.046] (**) Wacom Bamboo Connect Pen stylus: (accel) keeping acceleration scheme 1
    [ 1848.046] (**) Wacom Bamboo Connect Pen stylus: (accel) acceleration profile 0
    [ 1848.046] (**) Wacom Bamboo Connect Pen stylus: (accel) acceleration factor: 2.000
    [ 1848.046] (**) Wacom Bamboo Connect Pen stylus: (accel) acceleration threshold: 4
    [ 1848.047] (II) config/udev: Adding input device Wacom Bamboo Connect Pen (/dev/input/mouse1)
    [ 1848.047] (II) No input driver specified, ignoring this device.
    [ 1848.047] (II) This device may have been added with another device file.
    [ 1848.048] (II) config/udev: Adding input device Wacom Bamboo Connect Finger (/dev/input/event10)
    [ 1848.048] (**) Wacom Bamboo Connect Finger: Applying InputClass "evdev touchpad catchall"
    [ 1848.048] (**) Wacom Bamboo Connect Finger: Applying InputClass "Wacom class"
    [ 1848.048] (II) Using input driver 'wacom' for 'Wacom Bamboo Connect Finger'
    [ 1848.048] (**) Wacom Bamboo Connect Finger: always reports core events
    [ 1848.048] (**) Option "Device" "/dev/input/event10"
    [ 1848.048] (EE) Wacom Bamboo Connect Finger: Invalid type 'stylus' for this device.
    [ 1848.048] (EE) Wacom Bamboo Connect Finger: Invalid type 'eraser' for this device.
    [ 1848.048] (EE) Wacom Bamboo Connect Finger: Invalid type 'cursor' for this device.
    [ 1848.048] (II) Wacom Bamboo Connect Finger: type not specified, assuming 'touch'.
    [ 1848.048] (II) Wacom Bamboo Connect Finger: other types will be automatically added.
    [ 1848.048] (--) Wacom Bamboo Connect Finger touch: using pressure threshold of 27 for button 1
    [ 1848.048] (--) Wacom Bamboo Connect Finger touch: Wacom Unknown USB tablet maxX=4096 maxY=4096 maxZ=0 resX=27000 resY=44000
    [ 1848.048] (II) Wacom Bamboo Connect Finger touch: hotplugging dependent devices.
    [ 1848.048] (EE) Wacom Bamboo Connect Finger touch: Invalid type 'stylus' for this device.
    [ 1848.048] (EE) Wacom Bamboo Connect Finger touch: Invalid type 'eraser' for this device.
    [ 1848.048] (EE) Wacom Bamboo Connect Finger touch: Invalid type 'cursor' for this device.
    [ 1848.048] (II) Wacom Bamboo Connect Finger touch: hotplugging completed.
    [ 1848.049] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.3/usb5/5-1/5-1:1.1/input/input10/event10"
    [ 1848.049] (II) XINPUT: Adding extended input device "Wacom Bamboo Connect Finger touch" (type: TOUCH, id 11)
    [ 1848.049] (**) Wacom Bamboo Connect Finger touch: (accel) keeping acceleration scheme 1
    [ 1848.049] (**) Wacom Bamboo Connect Finger touch: (accel) acceleration profile 0
    [ 1848.049] (**) Wacom Bamboo Connect Finger touch: (accel) acceleration factor: 2.000
    [ 1848.049] (**) Wacom Bamboo Connect Finger touch: (accel) acceleration threshold: 4
    [ 1848.050] (II) config/udev: Adding input device Wacom Bamboo Connect Finger (/dev/input/mouse2)
    [ 1848.050] (II) No input driver specified, ignoring this device.
    [ 1848.050] (II) This device may have been added with another device file.
    [ 1848.050] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
    [ 1848.050] (II) No input driver specified, ignoring this device.
    [ 1848.050] (II) This device may have been added with another device file.
    [ 1848.058] (**) Wacom Bamboo Connect Pen eraser: Applying InputClass "evdev tablet catchall"
    [ 1848.058] (**) Wacom Bamboo Connect Pen eraser: Applying InputClass "Wacom class"
    [ 1848.058] (II) Using input driver 'wacom' for 'Wacom Bamboo Connect Pen eraser'
    [ 1848.058] (**) Wacom Bamboo Connect Pen eraser: always reports core events
    [ 1848.058] (**) Option "Device" "/dev/input/event9"
    [ 1848.058] (**) Option "Type" "eraser"
    [ 1848.058] (--) Wacom Bamboo Connect Pen eraser: Wacom Unknown USB tablet maxX=14720 maxY=9200 maxZ=1023 resX=100000 resY=100000 tilt=enabled
    [ 1848.066] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.3/usb5/5-1/5-1:1.0/input/input9/event9"
    [ 1848.066] (II) XINPUT: Adding extended input device "Wacom Bamboo Connect Pen eraser" (type: ERASER, id 12)
    [ 1848.067] (**) Wacom Bamboo Connect Pen eraser: (accel) keeping acceleration scheme 1
    [ 1848.067] (**) Wacom Bamboo Connect Pen eraser: (accel) acceleration profile 0
    [ 1848.067] (**) Wacom Bamboo Connect Pen eraser: (accel) acceleration factor: 2.000
    [ 1848.067] (**) Wacom Bamboo Connect Pen eraser: (accel) acceleration threshold: 4
    [ 1848.067] (**) Wacom Bamboo Connect Finger pad: Applying InputClass "evdev touchpad catchall"
    [ 1848.067] (**) Wacom Bamboo Connect Finger pad: Applying InputClass "Wacom class"
    [ 1848.067] (II) Using input driver 'wacom' for 'Wacom Bamboo Connect Finger pad'
    [ 1848.067] (**) Wacom Bamboo Connect Finger pad: always reports core events
    [ 1848.067] (**) Option "Device" "/dev/input/event10"
    [ 1848.067] (**) Option "Type" "pad"
    [ 1848.067] (--) Wacom Bamboo Connect Finger pad: Wacom Unknown USB tablet maxX=4096 maxY=4096 maxZ=0 resX=27000 resY=44000
    [ 1848.067] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.3/usb5/5-1/5-1:1.1/input/input10/event10"
    [ 1848.067] (II) XINPUT: Adding extended input device "Wacom Bamboo Connect Finger pad" (type: PAD, id 13)
    [ 1848.068] (**) Wacom Bamboo Connect Finger pad: (accel) keeping acceleration scheme 1
    [ 1848.068] (**) Wacom Bamboo Connect Finger pad: (accel) acceleration profile 0
    [ 1848.068] (**) Wacom Bamboo Connect Finger pad: (accel) acceleration factor: 2.000
    [ 1848.068] (**) Wacom Bamboo Connect Finger pad: (accel) acceleration threshold: 4
    [ 3145.527] (II) UnloadModule: "wacom"
    [ 3145.527] (II) UnloadModule: "wacom"
    [ 3145.527] (II) UnloadModule: "wacom"
    [ 3145.527] (II) UnloadModule: "wacom"
    [ 3145.527] (II) evdev: DELL DELL USB Keyboard: Close
    [ 3145.527] (II) UnloadModule: "evdev"
    [ 3145.527] (II) evdev: Logitech Optical USB Mouse: Close
    [ 3145.527] (II) UnloadModule: "evdev"
    [ 3145.527] (II) evdev: Power Button: Close
    [ 3145.528] (II) UnloadModule: "evdev"
    [ 3145.528] (II) evdev: Power Button: Close
    [ 3145.528] (II) UnloadModule: "evdev"
    Thanks!!!!!
    Last edited by stuvjordan (2013-03-21 17:56:52)

  • Opera in xmonad -- style problem

    I recently made the switch to xmonad and am loving it!
    The only problem so far that's left me scratching my head is Opera's (lack of) styling with this WM.
    Most of Opera uses its own default grey-ish theme without issue, but the toolbar is not styled by default. If I start Opera explicitly with the "-style ..." option, it appears fine. It also appears fine in KDEmod by default (i.e., without using the "-style ..." option).
    I've tried several builds--always with the same problem:
    9.63-1 (repos)
    9.60_2436-1 (KDEmod)
    10.00_4116-2 (AUR)
    These should be shared builds with the exception of 9.63-1, AFAIK.
    All my other KDE/Qt 4 apps are styled appropriately in xmonad.
    Ideas? Is anyone else experiencing this?

    Yes, I've done that already.
    I was more curious about why this is happening and whether anyone else is experiencing a similar problem with Opera + xmonad.

  • Xmonad-darcs setlocale problem.

    Hi all!
    Recently installed Arch again, using helmuthdu install script. I installed GNOME, but decided to try xmonad-darcs from AUR. But it have problem with setlocale:
    Setup: At least the following dependencies are missing:
    setlocale -any
    I tried to set locale in Gnome, locale-gen - non worked.
    Any idea where should problem be ?

    Kyras wrote:Recently installed Arch again, using helmuthdu install script. I installed GNOME, but decided to try xmonad-darcs from AUR. But it have problem with setlocale:
    You are aware that that project is no longer maintained? https://github.com/helmuthdu/aui
    Anyway, 2 things here:
    Please install arch the official way. We do not and will not know what changes the script made and thus cannot help
    Since this is an AUR package, maybe you want to ask there as the maintainer will know more about the package (after you installed Arch proper)

  • A bit problem in xmonad

    In firefox, pressing `ctrl+shift+o` and  importing a saved bookmark, the `confirm` window will be hidden !
    How can i make the `confirm window` appear above the `manage bookmark window` ?
    myManageHook = composeAll . concat $
    [ [ className =? c --> doFloat | c <- myCFloats]
    ,[ className =? c --> doIgnore | c <- myIgnores]
    ,[ className =? "Firefox" --> doF W.swapDown]
    ,[ (className =? "Audacious" <||> className =? "Xchat") --> doShift "3" ]
    ,[ resource =? r --> doFloat | r <- myRFloats]
    ,[(role =? "gimp-toolbox" <||> role =? "gimp-image-window") --> (ask >>= doF . W.sink)]
    ,[ title =? t --> doFloat | t <- myTFloats]
    ,[name =? n --> doCenterFloat | n <- myNames]
    ,[isFullscreen --> doFullFloat]]
    where myCFloats = ["Audacious", "Shredder", "GQview", "MPlayer", "Toplevel","Vncviewer","Xmessage","Xchat","Evince"]
    myRFloats = ["Dialog", "Download", "Places"]
    myTFloats = ["Firefox Preferences", "Element Properties", "VLC"]
    myIgnores = ["trayer"]
    myNames = ["bashrun","Google Chrome Options","R Graphics: Device 2 (ACTIVE)"]
    role = stringProperty "WM_WINDOW_ROLE"
    name = stringProperty "WM_NAME"
    Sincerely!

    className =? "Firefox" --> doF W.swapDown
    i believe that's your problem.  maybe make that match a little more specific?
    className =? "Firefox" <&&> [something specific to omit that 'confirm' window] --> doF W.swapDown
    you could also look into composeOne and have a rule to match the 'confirm' window above the general firefox rule (this would affect other things though).

  • XMonad recompile failing - path problem?

    I have XMonad setup on my machine, and whenever I try to recompile from within the environment (mod-Q), I get the error:
    collect2: fatal error: cannot find 'ld'
    compilation terminated.
    However, if I open a terminal and do xmonad --recompile, it works fine.
    Also, a few applications such as firefox and intellij don't run from dmenu/yeganesh, I have to launch them from the terminal.
    This makes me think that xmonad doens't have the same $PATH as my terminal environment. How would I check this?

    thanks for your help skottish!
    running ghc-pkg list displayed that i had two haskell-time's installed. querying the aur using paktahn said that i had haskell-time installed with ghc, which was correct but yaourt said i didn't have it installed. so i installed the package with yaourt, removing both dependancies defined in the pkgbuild, because those always sent yaourt into a terrible loop. the build succeeded and i promptly removed the package. I then reinstalled ghc, xmonad-darcs, and xmonad-contrib-darcs using paktahn. Everything is working splendid now. baller.

Maybe you are looking for

  • What is a .tar backup file and can I delete it?

    I'm cleaning up files on my iMac and noticed a file in my Documents folder (where I keep applications installation files) that is called "backup-fri-feb-08-15_42_35-2013.tar". This file is over 7 gb so I would like to remove it but I can't find anywh

  • Cannot open Reader

    I've tried to download both the XI and the 9.5 versions of Reader and I continually get an error message; "Adobe Reader has encountered a problem and needs to close", when I try to open the program. I have Windows XP - SP3 on my computer and I cannot

  • IOS 8.3 and blank App/iTunes Store

    Since I updated to iOS 8.3  I can't connect to Apps store or Exchange server.  I tried logging out of my app store and itunes  thinking it just needed to reconnect and now I can't get back in.  Also some apps are not working at all.  Anyone else havi

  • Can't export with Flash Builder using Android 4.3

    Just installed Android 4.3 and now I can't export from Flash Builder to my Android device. Also some of my previously installed Flex apps will not run. Anyone else seeing this? Any clues or answers???

  • Configure OBA7 based on company code

    Hi Gurus heres my problem. in OBA7-- in "required during document entry tab",  the check box for reference number is ticked. but i want that to be set up based on company code. for 1 company code, they want it to be not required, where as others want