Xmonad with dual screen strange bug or feature !

Hi,
I am running xmonad with dual screen. The strange thing (bug or feature) I noticed that when I move a window to another screen and then try to change the workspace, the window moves along to the same workspace but lands on the other screen.
Is there any way to switch off this feature. I googled a bit and replaced the greedyView parameter with view but it didn't help.
regards,
Hardik

Here is my  xmonad.hs
import XMonad
import System.Exit
import qualified XMonad.StackSet as W
import qualified Data.Map as M
import XMonad.Util.Run
import XMonad.Hooks.DynamicLog
import XMonad.Hooks.ManageDocks
import XMonad.Layout.NoBorders
import XMonad.Hooks.SetWMName
import XMonad.Hooks.ManageHelpers (isFullscreen, doFullFloat, doCenterFloat)
import XMonad.Layout.Tabbed
import System.IO
-- -xos4-terminus-medium-r-*-*-14-*-*-*-*-*-*-*
myLauncher :: String
myLauncher = "`dmenu_path | dmenu -fn '-xos4-terminus-medium-r-*-*-14-*-*-*-*-*-*-*' -nb '#303030' -nf '#959595' -sf '#FFFFFF' -sb '#606060'`"
myKeys conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $
[ ((modMask .|. shiftMask, xK_Return), spawn $ XMonad.terminal conf)
, ((modMask, xK_p ), spawn myLauncher)
, ((modMask .|. shiftMask, xK_c ), kill)
, ((mod4Mask .|. controlMask, xK_Down ), spawn "/home/hardik/bin/decrease-aumix-vol.sh")
, ((0 , 0x1008ff11 ), spawn "/home/hardik/bin/decrease-aumix-vol.sh")
, ((mod4Mask .|. controlMask, xK_Up ), spawn "/home/hardik/bin/increase-aumix-vol.sh")
, ((0 , 0x1008ff13 ), spawn "/home/hardik/bin/increase-aumix-vol.sh")
, ((mod4Mask .|. controlMask, xK_m ), spawn "/home/hardik/bin/toggle-aumix-mute.sh")
, ((0 , 0x1008ff12 ), spawn "/home/hardik/bin/toggle-aumix-mute.sh")
, ((modMask, xK_space ), sendMessage NextLayout)
, ((modMask .|. shiftMask, xK_space ), setLayout $ XMonad.layoutHook conf)
, ((modMask, xK_n ), refresh)
, ((modMask, xK_Tab ), windows W.focusDown)
, ((modMask, xK_j ), windows W.focusDown)
, ((modMask, xK_k ), windows W.focusUp )
, ((modMask, xK_m ), windows W.focusMaster )
, ((modMask, xK_Return), windows W.swapMaster)
, ((modMask .|. shiftMask, xK_j ), windows W.swapDown )
, ((modMask .|. shiftMask, xK_k ), windows W.swapUp ) , ((modMask, xK_h ), sendMessage Shrink) , ((modMask, xK_l ), sendMessage Expand)
, ((modMask, xK_t ), withFocused $ windows . W.sink)
, ((modMask , xK_comma ), sendMessage (IncMasterN 1))
, ((modMask , xK_period), sendMessage (IncMasterN (-1)))
, ((modMask .|. shiftMask, xK_q ), io (exitWith ExitSuccess))
-- , ((modMask , xK_q ), restart "xmonad" True)
, ((modMask , xK_q ), spawn "killall conky dzen2 && xmonad --recompile && xmonad --restart")
, ((modMask .|.shiftMask .|. controlMask , xK_c ), spawn "emacs ~/.xmonad/xmonad.hs")
, ((modMask .|. controlMask , xK_l ), spawn "xscreensaver-command -lock")
, ((modMask .|. controlMask , xK_k ), spawn "python ~/pythonScripts/SwitchKbLayoutDesk/src/setNextKbLayout.py")
, ((modMask , xK_b ), sendMessage ToggleStruts)
++
[((m .|. controlMask, k), windows $ f i)
| (i, k) <- zip (XMonad.workspaces conf) [xK_F1 .. xK_F4]
, (f, m) <- [(W.view, 0), (W.shift, shiftMask)]]
-- , (f, m) <- [(W.greedyView, 0), (W.shift, shiftMask)]]
++
-- mod-{w,e,r}, Switch to physical/Xinerama screens 1, 2, or 3
-- mod-shift-{w,e,r}, Move client to screen 1, 2, or 3
[((m .|. modMask, key), screenWorkspace sc >>= flip whenJust (windows . f))
| (key, sc) <- zip [xK_w, xK_e] [0..]
, (f, m) <- [(W.view, 0), (W.shift, shiftMask)]]
myMouseBindings (XConfig {XMonad.modMask = modMask}) = M.fromList $
[ ((modMask, button1), (\w -> focus w >> mouseMoveWindow w))
, ((modMask, button2), (\w -> focus w >> windows W.swapMaster))
, ((modMask, button3), (\w -> focus w >> mouseResizeWindow w))
myLayouts = tiled ||| Mirror tiled ||| noBorders Full ||| simpleTabbedBottom
where
tiled = Tall 1 (2/100) (1/2)
myManageHook = composeAll
[ className =? "MPlayer" --> doFloat
, className =? "Gimp" --> doFloat
, className =? "Gimp" --> doFloat
, className =? "IDEA" --> doFloat
, resource =? "desktop_window" --> doIgnore
, isFullscreen --> doFullFloat ]
myStartupHook :: X ()
myStartupHook = do
setWMName "LG3D"
spawn "xset -b"
spawn "xrdb -load ~/.Xdafaults"
spawn "xscreensaver -no-splash"
spawn "numlockx on"
spawn "eval `cat $HOME/.fehbg`"
spawn "conky -c ~/.conkyrc_dzen | dzen2 -ta r -x 600 -bg '#303030' -fn '-*-lucida-*-*-normal-*-12-*-*-*-*-*-*-*' &"
spawn "conky &"
-- spawn "conky -c ~/.conkyrc_time &"
shortened :: Int -> String -> String
shortened n xs | length xs < n = xs
| otherwise = (take ( n - length end) xs) ++ end
where
end = "..."
main = do
h <- spawnPipe "dzen2 -w 600 -ta l -fn ' -*-lucida-*-*-normal-*-12-*-*-*-*-*-*-*' -bg '#303030' -fg '#FFFFFF'"
xmonad $ defaultConfig {
terminal = "urxvt",
focusFollowsMouse = True,
borderWidth = 1,
modMask = mod1Mask,
workspaces = [" console "," dev "," misc "," browser "],
normalBorderColor = "#303030",
focusedBorderColor = "#55BBFF",
keys = myKeys,
mouseBindings = myMouseBindings,
layoutHook = avoidStruts $ smartBorders myLayouts,
manageHook = myManageHook <+> manageDocks,
startupHook = myStartupHook,
logHook = dynamicLogWithPP $ defaultPP {
ppCurrent = wrap "^fg(#FFFFFF)^bg(#606060)" "^fg()^bg()"
,ppVisible = wrap "^fg(#FFFFFF)^bg()" "^fg()^bg()"
,ppHidden = wrap "^fg(#55BBFF)^bg()" "^fg()^bg()"
,ppHiddenNoWindows = wrap "^fg(#808080)^bg()" "^fg()^bg()"
,ppUrgent = wrap "^fg(#FF0000)^bg()" "^fg()^bg()"
,ppTitle = \x -> if null x
then ""
else "< ^fg(#FFFFFF)^bg()" ++ shortened 23 x ++ "^fg()^bg() >"
,ppLayout = \x -> "^fg(#FFBB00)^bg()"
++ case x of
"Tall" -> "Tiled"
"Full" -> "Full"
"Mirror Tall" -> "Tiled Bottom"
"Tabbed Bottom Simplest" -> "Tabbed"
_ -> x
++ "^fg()^bg()"
,ppSep = " "
,ppWsSep = ""
,ppOutput = hPutStrLn h
Last edited by rangalo (2010-04-22 14:52:13)

Similar Messages

  • Is it possible to connect my mid 2010 Macbook Pro with my 21.5" iMac 11,2 so that I can work with dual screens?

    Is it possible to connect my mid 2010 Macbook Pro with my 21.5" iMac 11,2 so that I can work with dual screens?

    try xxx - may work
    _may_ work.

  • Any one help me with dual screen?

    I am trying to get my LCD monitor work, which is plugged in VGA.
    However, when i using "xrandr --output VGA --auto" to set it up, i get this failure "xrandr: cannot find crtc for output VGA"
    i am using intel graphic card, and the result of "xrandr -q --verbose" is as follows,
    Screen 0: minimum 320 x 200, current 1440 x 900, maximum 2960 x 1024
    VGA connected (normal left inverted right x axis y axis)
    Identifier: 0x3b
    Timestamp: 1278799
    Subpixel: unknown
    Clones:
    CRTCs: 0 1
    1360x768 (0x41) 84.8MHz -HSync +VSync
    h: width 1360 start 1432 end 1568 total 1776 skew 0 clock 47.7KHz
    v: height 768 start 771 end 781 total 798 clock 59.8Hz
    1152x864 (0x48) 81.6MHz -HSync +VSync
    h: width 1152 start 1216 end 1336 total 1520 skew 0 clock 53.7KHz
    v: height 864 start 865 end 868 total 895 clock 60.0Hz
    1024x768 (0x4c) 65.0MHz -HSync -VSync
    h: width 1024 start 1048 end 1184 total 1344 skew 0 clock 48.4KHz
    v: height 768 start 771 end 777 total 806 clock 60.0Hz
    800x600 (0x51) 40.0MHz +HSync +VSync
    h: width 800 start 840 end 968 total 1056 skew 0 clock 37.9KHz
    v: height 600 start 601 end 605 total 628 clock 60.3Hz
    640x480 (0x56) 25.2MHz -HSync -VSync
    h: width 640 start 656 end 752 total 800 skew 0 clock 31.5KHz
    v: height 480 start 490 end 492 total 525 clock 59.9Hz
    1440x900 (0x3f) 101.6MHz
    h: width 1440 start 1488 end 1520 total 1824 skew 0 clock 55.7KHz
    v: height 900 start 903 end 909 total 926 clock 60.2Hz
    LVDS connected 1440x900+0+0 (0x3f) normal (normal left inverted right x axis y axis) 0mm x 0mm
    Identifier: 0x3c
    Timestamp: 1278799
    Subpixel: horizontal rgb
    Clones:
    CRTC: 1
    CRTCs: 1
    PANEL_FITTING: full
    supported: center full_aspect full
    BACKLIGHT_CONTROL: kernel
    supported: native legacy combination kernel
    BACKLIGHT: 15 (0x0000000f) range: (0,15)
    1440x900 (0x3f) 101.6MHz *current +preferred
    h: width 1440 start 1488 end 1520 total 1824 skew 0 clock 55.7KHz
    v: height 900 start 903 end 909 total 926 clock 60.2Hz
    1440x900 (0x40) 106.5MHz -HSync +VSync
    h: width 1440 start 1520 end 1672 total 1904 skew 0 clock 55.9KHz
    v: height 900 start 903 end 909 total 934 clock 59.9Hz
    1360x768 (0x41) 84.8MHz -HSync +VSync
    h: width 1360 start 1432 end 1568 total 1776 skew 0 clock 47.7KHz
    v: height 768 start 771 end 781 total 798 clock 59.8Hz
    1152x864 (0x42) 143.5MHz -HSync +VSync
    h: width 1152 start 1232 end 1360 total 1568 skew 0 clock 91.5KHz
    v: height 864 start 865 end 868 total 915 clock 100.0Hz
    1152x864 (0x43) 121.5MHz +HSync -VSync
    h: width 1152 start 1216 end 1344 total 1568 skew 0 clock 77.5KHz
    v: height 864 start 865 end 868 total 911 clock 85.1Hz
    1152x864 (0x44) 119.7MHz -HSync +VSync
    h: width 1152 start 1224 end 1352 total 1552 skew 0 clock 77.1KHz
    v: height 864 start 865 end 868 total 907 clock 85.0Hz
    1152x864 (0x45) 108.0MHz +HSync +VSync
    h: width 1152 start 1216 end 1344 total 1600 skew 0 clock 67.5KHz
    v: height 864 start 865 end 868 total 900 clock 75.0Hz
    1152x864 (0x46) 105.0MHz -HSync +VSync
    h: width 1152 start 1224 end 1352 total 1552 skew 0 clock 67.6KHz
    v: height 864 start 865 end 868 total 902 clock 75.0Hz
    1152x864 (0x47) 96.8MHz -HSync +VSync
    h: width 1152 start 1224 end 1344 total 1536 skew 0 clock 63.0KHz
    v: height 864 start 865 end 868 total 900 clock 70.0Hz
    1152x864 (0x48) 81.6MHz -HSync +VSync
    h: width 1152 start 1216 end 1336 total 1520 skew 0 clock 53.7KHz
    v: height 864 start 865 end 868 total 895 clock 60.0Hz
    1024x768 (0x49) 94.5MHz +HSync +VSync
    h: width 1024 start 1072 end 1168 total 1376 skew 0 clock 68.7KHz
    v: height 768 start 769 end 772 total 808 clock 85.0Hz
    1024x768 (0x4a) 78.8MHz +HSync +VSync
    h: width 1024 start 1040 end 1136 total 1312 skew 0 clock 60.0KHz
    v: height 768 start 769 end 772 total 800 clock 75.0Hz
    1024x768 (0x4b) 75.0MHz -HSync -VSync
    h: width 1024 start 1048 end 1184 total 1328 skew 0 clock 56.5KHz
    v: height 768 start 771 end 777 total 806 clock 70.1Hz
    1024x768 (0x4c) 65.0MHz -HSync -VSync
    h: width 1024 start 1048 end 1184 total 1344 skew 0 clock 48.4KHz
    v: height 768 start 771 end 777 total 806 clock 60.0Hz
    832x624 (0x4d) 57.3MHz -HSync -VSync
    h: width 832 start 864 end 928 total 1152 skew 0 clock 49.7KHz
    v: height 624 start 625 end 628 total 667 clock 74.6Hz
    800x600 (0x4e) 56.3MHz +HSync +VSync
    h: width 800 start 832 end 896 total 1048 skew 0 clock 53.7KHz
    v: height 600 start 601 end 604 total 631 clock 85.1Hz
    800x600 (0x4f) 50.0MHz +HSync +VSync
    h: width 800 start 856 end 976 total 1040 skew 0 clock 48.1KHz
    v: height 600 start 637 end 643 total 666 clock 72.2Hz
    800x600 (0x50) 49.5MHz +HSync +VSync
    h: width 800 start 816 end 896 total 1056 skew 0 clock 46.9KHz
    v: height 600 start 601 end 604 total 625 clock 75.0Hz
    800x600 (0x51) 40.0MHz +HSync +VSync
    h: width 800 start 840 end 968 total 1056 skew 0 clock 37.9KHz
    v: height 600 start 601 end 605 total 628 clock 60.3Hz
    800x600 (0x52) 36.0MHz +HSync +VSync
    h: width 800 start 824 end 896 total 1024 skew 0 clock 35.2KHz
    v: height 600 start 601 end 603 total 625 clock 56.2Hz
    640x480 (0x53) 36.0MHz -HSync -VSync
    h: width 640 start 696 end 752 total 832 skew 0 clock 43.3KHz
    v: height 480 start 481 end 484 total 509 clock 85.0Hz
    640x480 (0x54) 31.5MHz -HSync -VSync
    h: width 640 start 664 end 704 total 832 skew 0 clock 37.9KHz
    v: height 480 start 489 end 492 total 520 clock 72.8Hz
    640x480 (0x55) 31.5MHz -HSync -VSync
    h: width 640 start 656 end 720 total 840 skew 0 clock 37.5KHz
    v: height 480 start 481 end 484 total 500 clock 75.0Hz
    640x480 (0x56) 25.2MHz -HSync -VSync
    h: width 640 start 656 end 752 total 800 skew 0 clock 31.5KHz
    v: height 480 start 490 end 492 total 525 clock 59.9Hz
    720x400 (0x57) 35.5MHz -HSync +VSync
    h: width 720 start 756 end 828 total 936 skew 0 clock 37.9KHz
    v: height 400 start 401 end 404 total 446 clock 85.0Hz
    640x400 (0x58) 31.5MHz -HSync +VSync
    h: width 640 start 672 end 736 total 832 skew 0 clock 37.9KHz
    v: height 400 start 401 end 404 total 445 clock 85.1Hz
    640x350 (0x59) 31.5MHz +HSync -VSync
    h: width 640 start 672 end 736 total 832 skew 0 clock 37.9KHz
    v: height 350 start 382 end 385 total 445 clock 85.1Hz
    HDMI-1 connected 1360x768+0+0 (0x41) normal (normal left inverted right x axis y axis) 0mm x 0mm
    Identifier: 0x3d
    Timestamp: 1278799
    Subpixel: unknown
    Clones: HDMI-2
    CRTC: 0
    CRTCs: 0 1
    1360x768 (0x41) 84.8MHz -HSync +VSync *current
    h: width 1360 start 1432 end 1568 total 1776 skew 0 clock 47.7KHz
    v: height 768 start 771 end 781 total 798 clock 59.8Hz
    1152x864 (0x48) 81.6MHz -HSync +VSync
    h: width 1152 start 1216 end 1336 total 1520 skew 0 clock 53.7KHz
    v: height 864 start 865 end 868 total 895 clock 60.0Hz
    1024x768 (0x4c) 65.0MHz -HSync -VSync
    h: width 1024 start 1048 end 1184 total 1344 skew 0 clock 48.4KHz
    v: height 768 start 771 end 777 total 806 clock 60.0Hz
    800x600 (0x51) 40.0MHz +HSync +VSync
    h: width 800 start 840 end 968 total 1056 skew 0 clock 37.9KHz
    v: height 600 start 601 end 605 total 628 clock 60.3Hz
    640x480 (0x56) 25.2MHz -HSync -VSync
    h: width 640 start 656 end 752 total 800 skew 0 clock 31.5KHz
    v: height 480 start 490 end 492 total 525 clock 59.9Hz
    HDMI-2 disconnected (normal left inverted right x axis y axis)
    Identifier: 0x3e
    Timestamp: 1278799
    Subpixel: unknown
    Clones: HDMI-1
    CRTCs: 0 1
    xorg.conf is here
    Section "ServerFlags"
    Option "AutoAddDevices" "false"
    EndSection
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Touchpad" "SendCoreEvents"
    Option "AIGLX" "true"
    EndSection
    Section "Files"
    # RgbPath "/usr/share/X11/rgb"
    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 "GLcore"
    Load "xtrap"
    Load "extmod"
    Load "glx"
    Load "dri"
    # Load "record"
    Load "dbe"
    Load "freetype"
    Load "synaptics"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "XkbRules" "xorg"
    Option "XkbModel" "thinkpad60"
    Option "XkbLayout" "us"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "InputDevice"
    Identifier "Touchpad"
    Driver "synaptics"
    Option "SendCoreEvents" "true"
    Option "VertEdgeScroll" "true"
    Option "HorizEdgeScroll" "true"
    Option "Device" "/dev/psaux" #/dev/input/mouse0
    Option "Protocol" "auto-dev"
    # Option "TouchpadOff" "1" #Uncomment if you just want to disable the touchpad and use only the trackpoint
    # Option "HorizScrollDelta" "0" #Why is this in here by default. By Gods, it kill horizontal scrolling!
    Option "RightEdge" "5500" #This is a little bigger than the default narrowing the scroll region
    Option "BottomEdge" "4500" #This is a little bigger than the default narrowing the scroll region
    Option "RTCornerButton" "0" #disable Right Top corner "button"
    Option "RBCornerButton" "0" #disable Right Bottom corner "button"
    Option "SHMConfig" "on" #this allows configuration of the touchpad using qsynaptics, synclient, or what have you.
    EndSection
    Section "Monitor"
    DisplaySize 304.8 190.5 # 120 dpi @1440x900
    Identifier "Monitor0"
    Option "DPMS"
    EndSection
    Section "Device"
    Option "NoDDC" "true" # [<bool>]
    Identifier "Card0"
    Driver "intel"
    VendorName "Intel Corporation"
    BoardName "Mobile Integrated Graphics Controller"
    BusID "PCI:0:2:0"
    Option "AccelMethod" "xaa"
    Option "XAANoOffscreenPixmaps" "true"
    Option "DRI" "true"
    Option "FramebufferCompression" "false"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1440x900" "1280x800" "1024x768" "800x600"
    Virtual 2960 1024
    EndSubSection
    EndSection
    Section "DRI"
    Group "video"
    Mode 0666
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection
    and now i am using awesome wm. any ideas? Thank you!!

    konni wrote:
    how many monitors do you want to plugin? three? like damjan said, not sure if that works at all.
    or are the hdmi outputs idle and you're just trying to plug in a second screen?
    whats the exact problem? no output on that screen at all? or mirroring the internal one? in that case, try
    xrandr --output VGA --right-of LVDS
    (or left-of...)
    can you plug that monitor in with hdmi? (adapter/etc) you might try that as well, maybe just the vga fails.
    wow.. thank you konni... and thank damjan
    i turned off HDMI-1, then I could get VGA work!
    now i have dual screens, pretty cool.

  • Problem with dual screen (24" imac 2006 ver)

    hi
    i've got a 24" intel imac (2006 ver) and i've connected it using apple's mini-dvi => vga adapter to my 2nd 22" lcd monitor, a samsung 2232GW, which is set to 1680 x 1050.
    however, the samsung lcd displays (when i'm using as dual screen) is quite blur and double imaged. quality is readable but very irritating. i'm also using the same monitor for my ps3 (uses the DVI side) and have no problem with any visual aspect. I've tried playing around with the settings like resolution and calibration and tuning but didn't help at all.
    anyone might have any ideas and enlighten me on this issue?
    thanks
    Message was edited by: Treon

    Did you get any resolution to your question? I have the Samsung monitor almost like yours, and I posted two seconds ago. I think I have a similar problem. I had been using my Samsung with my PC, and just switched to Mac. I loved my Samsung, but now ,for the first time using as a second. Hooked up to mini dvi to dvi, and reported a glow, or tinge coming around any window that I may place on the Samsung.Also, when Ilook at the background around the window I can see that the resolution is not perfect and is breaking up a little. Did you try VGA? and did it help? Curious to know

  • Problems with dual screens

    I am running an iMac 3.06 GHz, 4 GB RAM, 512 VRAM. I also use an external monitor connected via HDMI. When I run Color using dual screens the picture shows almost only black, and what isn't black is so saturated I can barely discern what the picture is. Does anyone know why this is happening and/or how I can fix it?

    I'm not sure Color works properly with monitors connected in that manner. Color isn't accurate without proper monitoring, and you can't get proper monitoring with an iMac. By proper monitoring I mean an HDTV or broadcast monitor being fed a VIDEO signal via a hardware capture card (AJA, Decklink, Matrox). You can't get capture cards to work on iMacs, therefore you cannot properly monitor a video signal.
    The display in the Color interface is not accurate at all. It is just a reference to see what frame you are on. It isn't designed to be used to judge the quality of the image. It has a much higher gamma (midrange) than is seen on the external monitor.
    I'm assuming the monitor you are using is being fed a converted HDMI signal...converted from the DVI or Mini Display port on the computer. Well, that is a computer signal...not a video one. There's a difference. So this setup will not work...not with Color.
    Sorry,
    Shane

  • TooltipText used with dual screen problem

    Hi,
    In my application I use a dual screen, so JComponent may be either on one screen or the other.
    My problem is when the mouse rolls over a JComponent on the right screen, the Tooltiptext associated is displayed onto the left screen.
    Any idea if I could display it automatically on the good screen or if I have to implement myself the display ?
    Thx for advance

    Did you get any resolution to your question? I have the Samsung monitor almost like yours, and I posted two seconds ago. I think I have a similar problem. I had been using my Samsung with my PC, and just switched to Mac. I loved my Samsung, but now ,for the first time using as a second. Hooked up to mini dvi to dvi, and reported a glow, or tinge coming around any window that I may place on the Samsung.Also, when Ilook at the background around the window I can see that the resolution is not perfect and is breaking up a little. Did you try VGA? and did it help? Curious to know

  • Xmonad with xinerama: screen order is messed up.

    xmonad seems not to detect the order of my screens properly.
    With nvidia-settings, i have configured the second screen to be 'right of'
    my main screen. The main screen still shows the boot messages.
    However, as soon as i log in, the focus goes to the second screen.
    Also, mod-w refers to the second screen, whereas mod-e refers to the
    main screen. It seems like, xmonad just confuses them both and
    recognizes them in opposite order. The mouse however mouse as
    expected to the right screen.
    Searching the internet, i found that i can remap the keys to refer to
    my screens properly. And for sure, there is a way to configure the
    screen which has the focus on login. However i would rather like to
    understand what the problem is and fix it, then fiddeling with the
    symptoms.
    The second is connected via VGA, just in case, that makes a difference.

    MickeyKnox wrote:But if i'm getting you right, the problem is with xmonad (or rather there is nothing specified
    and xmonad just makes a for me false assumption). So i guess to proper place to fix this is
    indeed xmonad.
    The problem is not Xmonad---it solves the issue by having the "PhysicalScreens" module. The PhysicalScreens module fixes precisely the issue you're having.
    Fixing this on a "grander" scale requires modifying the X extensions themselves (Xinerama and/or RandR). It it not a bug that those extensions report the physical displays in an odd order.
    The window manager must orient the screens how it sees fit; PhysicalScreens does just that.
    MickeyKnox wrote:Another reason was that the solution in the XMonad FAQ looks kind of cryptic to me and i just
    don't like to copy and paste things i don't understand. But i guess sooner or later i have to
    emerse myself in Haskell...
    Use the xmonad-contrib API docs for an example of how to use PhysicalScreens.
    You can only get so far with configuring Xmonad without learning some Haskell. It's a huge upfront cost, I know, but you otherwise end up copying & pasting.

  • Problems with dual screen in Lightroom 4

    I am getting very poor performance when using a secondary screen in Lightroom 4. I am using Lightroom 4 on a PC with  with Windows 7 64-bit on an Intel i7 860 @ 2.80 Ghz, 8 Mb RAM. Graphics card is a nVidia GE Force GTX 260 with updated drivers. Monitors are Samsung SyncMaster 226 and Asus ProArt 22". When in Develop module, the main screen, either on the Samsung or the Asus, goes randomly on and out. Sliders are quite sluggish, also, next to useless. Lightroom 3 works fine with the same catalog. Anybody knows a fix or a workaround?

    I'm seeing the same behaviour here with a dual-Xeon E5620 with 24GB of RAM and a decent video card running Win7 Pro x64. It's insanely annoying.
    This shouldn't be happening (it definitely wasn't happening with any of the other versions of LR I've owned), and renders LR4 completely unusable in that mode. It works again if I disable the second monitor, but that kind of defeats the purpose of having bought two identical monitors for photo editing...
    FWIW, I see lots of "Bezel" and "Shadow" items appearing and disappearing very quickly in the taskbar at the bottom of the screen, and regions of the display turn completely black for a few seconds, usually the top half of the photo being edited. The controls are unusable during that time and the entire application feels like it's frozen for a good 5-10 seconds before it unfreezes. Then the whole process repeats itself within a few seconds.

  • Single screen KVM with dual screen setup

    So here's the deal. I have dual 20" cinema displays hooked up to my Quad. I took one of the displays and hooked it up to my IOGear DVI KVM (http://www.iogear.com/main.php?loc=product&Item=GCS1764) so that that display could be shared with my Powerbook G4 and my Core Duo MacMini. However, when I change ports on the KVM, the secondary display "disappears" from the PowerMac and it starts freaking out. Sometimes it will just try to detect the screen (constant signal flickering) for a minute and then give up and operate as a single screen system but most of the time it tries to detect the screen for 2+ minutes until it just crashes the whole computer and then I have to reboot the PowerMac.
    Any ideas?

    Removing pin 16 on the DVI cable to the PoweMac might help. See the last item in: <http://www.gefen.com/kvm/support/faq/>

  • Full screen mode with dual screen

    I have a Macbook Pro and use a second screen. I do like the new full screen feature but the app (safari, chrome, opera, firefox etc...) will only full screen with the primary screen (macbook screen). Really defeats the point of having two screens and having the full screen feature combined.
    Any resolutions or is there a new update coming?
    In Summary:
    Full screen mode will only work on your primary monitor  and not a separate screen. Please help.

    Known issue.
    Hopefully, it'll be fixed in a future update.

  • Crash with blue screen -- Rosetta bug??

    I have now had my MacBook Pro crash 5 times over the past few weeks (since I installed Snow Leopard) in the same way. The screens go blue and then Finder returns, but all programs (and, of course, my work) are gone. Finder returns too fast to be a full re-boot. PRAM reset doesn't help. Disks are clean.
    I've seen some other reports of similar behavior and I now suspect Rosetta. This has happened to me most often (always?) when I'm editing in Word 2004. I especially suspect deleting or replacing text. There's another (related?) bug new to Word 2004 that it won't delete full or multiple selected words with the backspace key, altho it can do single characters.
    So, others who have had this happen: Were you running a program that required Rosetta? Were you editing text?
    Apple: Do you have any insights?

    We may have a solution.
    The Evernote menu icon re-appeared in my menu bar. I didn't notice it until... same crash.
    (It is very gone now.)
    In case it helps, here's the dump.
    But the system has been stable without that icon there, so I think that may be the solution.
    Process: WindowServer [60]
    Path: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/WindowServer
    Identifier: WindowServer
    Version: ??? (???)
    Code Type: X86-64 (Native)
    Parent Process: launchd [1]
    Date/Time: 2009-09-17 16:27:01.171 -0400
    OS Version: Mac OS X 10.6.1 (10B504)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x00000001551a1e2a
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 ...ple.CoreServices.CarbonCore 0x00007fff8138d2a6 UCKeyTranslate + 464
    1 com.apple.CoreGraphics 0x00007fff87ab3d79 CGSUniCodeForKeyAndFlags + 161
    2 com.apple.CoreGraphics 0x00007fff87b2988b CGXCheckForHotKey + 3184
    3 com.apple.CoreGraphics 0x00007fff879990b9 sPostContinuation + 1808
    4 com.apple.CoreGraphics 0x00007fff8799813a CGXFilterEvent + 73
    5 com.apple.CoreGraphics 0x00007fff879985b3 CGXProcessHIDEvent + 164
    6 com.apple.CoreGraphics 0x00007fff8799839c sHIDContinuation + 528
    7 com.apple.CoreGraphics 0x00007fff8799813a CGXFilterEvent + 73
    8 com.apple.CoreGraphics 0x00007fff87997ee5 CGXGetNextEvent + 133
    9 com.apple.CoreGraphics 0x00007fff87997e48 CGXRunOneEventPass + 36
    10 com.apple.CoreGraphics 0x00007fff8799a758 eventNotificationHandler + 80
    11 com.apple.CoreGraphics 0x00007fff8799a6c1 CGXPostPortData + 175
    12 com.apple.CoreGraphics 0x00007fff8799a4cb CGXRunOneServerPass + 451
    13 com.apple.CoreGraphics 0x00007fff879977e6 CGXRunOneServicesPass + 357
    14 com.apple.CoreGraphics 0x00007fff879a03ea CGXServerLoop + 139
    15 com.apple.CoreGraphics 0x00007fff8796bbd6 CGXGetRootAdminCredentials + 0
    16 WindowServer 0x0000000100000f29 main + 9
    17 WindowServer 0x0000000100000f18 start + 52
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff88242b16 kevent + 10
    1 libSystem.B.dylib 0x00007fff88244a19 dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x00007fff882446d6 dispatch_queueinvoke + 195
    3 libSystem.B.dylib 0x00007fff882441f6 dispatch_workerthread2 + 244
    4 libSystem.B.dylib 0x00007fff88243b28 pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff882439c5 start_wqthread + 13
    Thread 2:
    0 libSystem.B.dylib 0x00007fff88229d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8822a3ed mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff816d9ce2 __CFRunLoopRun + 2002
    3 com.apple.CoreFoundation 0x00007fff816d903f CFRunLoopRunSpecific + 575
    4 com.apple.CoreFoundation 0x00007fff816d8dc6 CFRunLoopRun + 70
    5 com.apple.CoreGraphics 0x00007fff8797d531 eventThread + 441
    6 libSystem.B.dylib 0x00007fff88262f66 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff88262e19 thread_start + 13
    Thread 3:
    0 libSystem.B.dylib 0x00007fff88229d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff8822a3ed mach_msg + 59
    2 com.apple.QuartzCore 0x00007fff86f7f296 CA::Render::Server::server_thread(void*) + 177
    3 com.apple.QuartzCore 0x00007fff86f7f1d6 thread_fun + 34
    4 libSystem.B.dylib 0x00007fff88262f66 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff88262e19 thread_start + 13
    Thread 4:
    0 libSystem.B.dylib 0x00007fff882649c6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff88268801 pthread_condwait + 1286
    2 com.apple.CoreGraphics 0x00007fff87a54a4a layerblit_work_queuethread + 714
    3 com.apple.CoreGraphics 0x00007fff87a54cbc layerblit_work_queueserver + 156
    4 libSystem.B.dylib 0x00007fff88262f66 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff88262e19 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
    rax: 0x0000000100af1e2a rbx: 0x0000000000000001 rcx: 0x0000000100af1f6c rdx: 0x00000000546b0000
    rdi: 0x0000000000000008 rsi: 0x00007fff70214260 rbp: 0x00007fff5fbf6800 rsp: 0x00007fff5fbf67b0
    r8: 0x0000000000000002 r9: 0x0000000100af1ef4 r10: 0x0000000000000000 r11: 0x00007fff5fbf685c
    r12: 0x0000000100af1e00 r13: 0x0000000000000000 r14: 0x0000000000000002 r15: 0x0000000000000015
    rip: 0x00007fff8138d2a6 rfl: 0x0000000000010217 cr2: 0x00000001551a1e2a
    Binary Images:
    0x100000000 - 0x100000fff WindowServer ??? (???) <5607962C-ED2B-5F52-8E3B-042562061DED> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/WindowServer
    0x100583000 - 0x100599ff7 com.apple.GeForceGA 1.6.2 (6.0.2) <A72577B7-7C47-786A-9594-629F617028C4> /System/Library/Extensions/GeForceGA.plugin/Contents/MacOS/GeForceGA
    0x10a500000 - 0x10a68bff7 GLEngine ??? (???) <3E2DEFB1-190A-FBAD-C48F-E90B45EED8A4> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x10a6bb000 - 0x10aa78fe7 libclh.dylib ??? (???) <A0B2FF0D-0FA6-5AAD-E9CC-19E6D0994FAF> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/libclh.dyl ib
    0x200000000 - 0x200466ff7 com.apple.GeForce8xxxGLDriver 1.6.2 (6.0.2) <E7631828-BAB2-ED97-11ED-10B7AB3F722F> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <B633F790-4DDB-53CD-7ACF-2A3682BCEA9F> /usr/lib/dyld
    0x7fff80003000 - 0x7fff8002bfff com.apple.DictionaryServices 1.1 (1.1) <D57BA55A-4CC5-5C17-8077-AEEA27A01C7A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff80653000 - 0x7fff80758fe7 libGLProgrammability.dylib ??? (???) <EDEC71CB-5F5B-7F55-47F4-19E953E3BE61> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff808b2000 - 0x7fff808b2ff7 com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8135b000 - 0x7fff8168dfef com.apple.CoreServices.CarbonCore 859.1 (859.1) <5712C4C1-B18B-88EE-221F-DA04A8EDA029> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff8168e000 - 0x7fff81801fef com.apple.CoreFoundation 6.6 (550) <04EC0CC2-6CE4-4EE0-03B9-6C5109398CB1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff818ce000 - 0x7fff818fffff libGLImage.dylib ??? (???) <4F318A3E-20C1-D846-2B36-62451A3241F7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff81be0000 - 0x7fff81beeff7 libkxld.dylib ??? (???) <823B6BE6-E952-3B3C-3633-8F4D6C4606A8> /usr/lib/system/libkxld.dylib
    0x7fff81bf2000 - 0x7fff81c16ff7 com.apple.CoreVideo 1.6.0 (43.0) <FF5F0EEF-56BE-24DD-C8FA-CB41F126E6A8> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff82264000 - 0x7fff8226afff libCGXCoreImage.A.dylib ??? (???) <D113DB65-BB37-5499-8825-E6AE8AB1F8B8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff8228f000 - 0x7fff8229efff com.apple.NetFS 3.2 (3.2) <61E3D8BE-A529-20BF-1A11-026EC774820D> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff82ef4000 - 0x7fff830b1fff libicucore.A.dylib ??? (???) <224721C0-EC21-94D0-6484-66C603C34CBE> /usr/lib/libicucore.A.dylib
    0x7fff830b2000 - 0x7fff831c1ff7 libcrypto.0.9.8.dylib ??? (???) <A2DA70D0-02AE-89FA-1CDA-B3CA986CAE6D> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff833da000 - 0x7fff83496ff7 com.apple.CoreServices.OSServices 352 (352) <CD933BBD-B260-552F-E64E-291D6ED3091A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff8377d000 - 0x7fff83f87fe7 libBLAS.dylib ??? (???) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff84060000 - 0x7fff84073fff libGL.dylib ??? (???) <D452ADC0-04B1-E24F-03E6-717E58E1D659> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff84074000 - 0x7fff8409fff7 libxslt.1.dylib ??? (???) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff843fc000 - 0x7fff8449cfff com.apple.LaunchServices 360.3 (360.3) <02FFE657-CC7A-5266-F06E-8732E28F70A9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff844c0000 - 0x7fff844cffef com.apple.opengl 1.6.3 (1.6.3) <6318A188-B43D-E82F-C157-2E76331227BD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff844d0000 - 0x7fff844e5fff com.apple.LangAnalysis 1.6.5 (1.6.5) <D4956302-5A2D-2AFD-C143-6287F1313196> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff844e6000 - 0x7fff84521fef com.apple.AE 496 (496) <6AFD62E0-DD92-4F04-A73A-90224D80593D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff84589000 - 0x7fff845cffe7 libvDSP.dylib ??? (???) <2DAA1591-8AE8-B411-7D01-68DE99C63CEE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff84645000 - 0x7fff8466bfe7 libJPEG.dylib ??? (???) <52ACD177-F101-BEF5-E7CC-9131F8372D0A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8466c000 - 0x7fff846b6ff7 com.apple.Metadata 10.6.0 (507.1) <AA0DF8E0-9B5B-2377-9B20-884919E28994> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff846b7000 - 0x7fff84713fff libGLU.dylib ??? (???) <AA2D37B3-8B7C-6772-F8BA-7364284C55FE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff84714000 - 0x7fff84714ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <BA861575-B0DE-50F5-A799-BDF188A3D4EF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff847ed000 - 0x7fff84871fff com.apple.print.framework.PrintCore 6.0 (312) <1F747E69-924D-8C5B-F318-C4828CC6E85D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff848a9000 - 0x7fff848afff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff84908000 - 0x7fff84926ff7 libPng.dylib ??? (???) <6A0E35B8-2E33-7C64-2B53-6F47F628DE7A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff84927000 - 0x7fff84934fff libCSync.A.dylib ??? (???) <D97C8D7E-2CA3-9495-0C41-004CE47BC5DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff849c5000 - 0x7fff84a2ffe7 libvMisc.dylib ??? (???) <524DC30F-6A54-CCED-56D9-F57033B06E99> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff84b77000 - 0x7fff84b79fff libRadiance.dylib ??? (???) <77F285E0-5D5E-A0B0-A89E-9332D6AB2867> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff84bc5000 - 0x7fff84bd9ff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff84c2c000 - 0x7fff84c3dfef libz.1.dylib ??? (???) <3A7A4C48-A4C8-A78A-8B87-C0DDF6601AC8> /usr/lib/libz.1.dylib
    0x7fff84c78000 - 0x7fff84d31fff libsqlite3.dylib ??? (???) <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
    0x7fff84d32000 - 0x7fff84d48fef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
    0x7fff85029000 - 0x7fff85029ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <E517A811-E0E6-89D0-F397-66122C7A25A4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff850bc000 - 0x7fff851d3fef libxml2.2.dylib ??? (???) <6D4C196C-B061-CBCD-AAFD-A21736A8425C> /usr/lib/libxml2.2.dylib
    0x7fff851d4000 - 0x7fff852a0fff com.apple.CFNetwork 454.4 (454.4) <E7721AD8-3177-8749-60F7-5EF323E6492B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff85450000 - 0x7fff854eafe7 com.apple.ApplicationServices.ATS 4.0 (???) <76009EB5-037B-8A08-5AB5-18DA59559509> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff85654000 - 0x7fff85654ff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff85655000 - 0x7fff85695fef com.apple.QD 3.31 (???) <0FA2713A-99BD-A96B-56AF-7DB0AB4927AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff85696000 - 0x7fff85751ff7 libFontParser.dylib ??? (???) <8926E1B0-6D1E-502A-5028-1DCC57F6D6FA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff85752000 - 0x7fff85753ff7 com.apple.TrustEvaluationAgent 1.0 (1) <4B6B7853-EDAC-08B7-3324-CA9A3802FAE2> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff857d1000 - 0x7fff85c14fef libLAPACK.dylib ??? (???) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff85d7b000 - 0x7fff85f35fef com.apple.ImageIO.framework 3.0.0 (3.0.0) <D5594E10-F805-F816-10E9-F95753BE18CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff8602c000 - 0x7fff86061ff7 libcups.2.dylib ??? (???) <1FE99C26-B845-F508-815A-5B2CF2CA5337> /usr/lib/libcups.2.dylib
    0x7fff8638c000 - 0x7fff863cdff7 com.apple.SystemConfiguration 1.10 (1.10) <E3FF1FC8-C760-2047-F954-0D283DD0F714> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff864fa000 - 0x7fff8677efff com.apple.security 6.0 (36910) <F7431448-BC2E-835D-E7A2-E47E0A5CB984> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff86890000 - 0x7fff8690dfef libstdc++.6.dylib ??? (???) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff8690e000 - 0x7fff8695dff7 libTIFF.dylib ??? (???) <E11A75A8-223C-8B5E-7F62-821F9ADE8821> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8695e000 - 0x7fff869eefff com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff869ef000 - 0x7fff86a10ff7 com.apple.opencl 11 (11) <A53E07FB-AD2F-9F3E-EC00-7DCC7DDE2F90> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff86a11000 - 0x7fff86a17ff7 IOSurface ??? (???) <8E0EE904-59D1-9AA0-CE55-B1777F4BAEC1> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff86a18000 - 0x7fff86a1bff7 libCoreVMClient.dylib ??? (???) <3A41933A-5174-7516-37E0-8E06365BF3DA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff86a1c000 - 0x7fff86a20ff7 libmathCommon.A.dylib ??? (???) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff86b03000 - 0x7fff86b08fff libGIF.dylib ??? (???) <0C112067-95FE-B9BC-C70C-64A46A277F34> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff86b09000 - 0x7fff86bb8fef edu.mit.Kerberos 6.5.8 (6.5.8) <A9C16B72-A1F8-3DDE-7772-E7635774CA6E> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff86bb9000 - 0x7fff86bbefff libGFXShared.dylib ??? (???) <C386DB22-A0AA-D826-ACBA-25E82B480D05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff86bbf000 - 0x7fff86c1cfef com.apple.framework.IOKit 2.0 (???) <65AA6170-12E3-BFB5-F982-E0C433610A1F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff86c1d000 - 0x7fff86cd1fef com.apple.ColorSync 4.6.0 (4.6.0) <080BEDDE-E7A4-F88D-928B-7501574A157B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff86f2d000 - 0x7fff872c1ff7 com.apple.QuartzCore 1.6.0 (226.0) <66E14771-C5F0-1415-0B7B-C45EE00C51A1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff87400000 - 0x7fff874b6fe7 libobjc.A.dylib ??? (???) <261D97A3-225B-8A00-56AA-F9F27973063F> /usr/lib/libobjc.A.dylib
    0x7fff87834000 - 0x7fff878b1fe7 com.apple.CoreText 3.0.0 (???) <51175014-9F0C-7E96-FB6F-3DC5E446B92E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff878b2000 - 0x7fff87fa45d7 com.apple.CoreGraphics 1.535.5 (???) <6599C41F-2D50-5E04-44E4-44FA90E022B5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff87fa7000 - 0x7fff88228fe7 com.apple.Foundation 6.6 (751) <CCE98C5C-DFEA-6C80-A014-A5985437072E> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff88229000 - 0x7fff883e7ff7 libSystem.B.dylib ??? (???) <66102D4E-6C8B-77D0-6766-2A1788B20C6F> /usr/lib/libSystem.B.dylib
    0x7fff883e8000 - 0x7fff884c2ff7 com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff88900000 - 0x7fff88951fe7 com.apple.HIServices 1.8.0 (???) <113EEB8A-8EC6-9F86-EF46-4BA5C2CBF77C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff88aa9000 - 0x7fff88acafff libresolv.9.dylib ??? (???) <01C7C750-7F6A-89B3-C586-5C50A839019E> /usr/lib/libresolv.9.dylib
    0x7fff88ae7000 - 0x7fff88b34ff7 libauto.dylib ??? (???) <8658DB85-C611-1212-44E5-5B2539018FA0> /usr/lib/libauto.dylib
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <66102D4E-6C8B-77D0-6766-2A1788B20C6F> /usr/lib/libSystem.B.dylib

  • Font antialiasing in Terminal with Dual Screen setup

    I am reposting basically the same problem found here: http://discussions.apple.com/thread.jspa?threadID=1472322 because I didn't find any solution browsing through the board.
    Basically the problem is this:
    1. Using only the laptop screen I have no problem. If I launch terminal with a single screen and then connect a second monitor I still have no problem.
    2. If I then quit terminal and relaunch it it's like the font loses some antialiasing, it's much more thinner.
    3. If I disconnect the second monitor it doesn't fix itself, I have to quit and relaunch terminal.

    emeres wrote:
    Does running the applications with DISPLAY variable help?
    env DISPLAY=:0.1 pcsx
    Setting the gaming monitor as primary output with xrandr might also help, if you get it running again. Take a look at dmesg about any warnings or errors and what modules are loaded.
    I actually just started experimenting with DISPLAY, and it works how I want it to.  I'm going to play with that a little bit (write scripts to launch my programs on that screen) to get the result I want.  So, I think this issue is solved.  Thanks.

  • Why my safari became very slow with dual screen

    I've just recently set up my mac mini with two monitor, when opening websites in safari, it takes up to 30 seconds to load, sometime even longer, and everything goes back to normal when second screen is power off or unpluged. please help
    v/r

    Wow, this is a new one on me!???
    Is this the new 2012 Mini?
    Which port is the second Monitor connect to & by what?
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.

  • IMac 27" slow down with dual screen

    Hello,
    I just bought a iMac 27" i5. i was really happy about it, until i plugged a extra screen on it !
    As soon as i put an extra screen (in DVI), my iMac get slow, and freeze for few instants !
    It's really noticeable, when i move the mouse, and it stay stuck and doesn't move smoothly
    When i remove the extra screen, it's not slow anymore, everything goes back to normal immediately !
    what's happening ?
    does that happend to someone else ?
    sorry about my poor english
    PS : i try to restart the iMac, i tried to put down both screen resolution, i tried to plug a différent screen, to run it with and without any application open... nothing change !

    read this thread
    http://discussions.apple.com/thread.jspa?messageID=11211154

  • How to keep full screen mode from blacking out 2nd screen with dual screens in windows

    anyone know how to do this its been driving me crazy for years.

    I can't get either Acrobat 9 Pro or Reader X to do this and I tried with several PDFs. Unchecked, nothing advances automatically. Maybe someone else has some insite.

Maybe you are looking for

  • Tax in Free Goods Pricing

    Dear Gurus, Need ur help to resolve the problem i'm facing in my Free Goods Pricing.  I have used r100 condition type before the tax calculation with 55 and 28.  I'm able to bring the net value to 0 but the tax is still calculated and the same is pos

  • My iphone was stolen and i need help please!!

    ok, so my iphone was stolen and i want to know if i can transfer my old number to my new iphone without a new contract since i don't have the old sim card nor my old computer with the old iphone's backup, any suggestions? Message was edited by: iphon

  • Bursting with multiple data sources

    Hello all, I am working in a retail environment and we are building reports for the stores. There are several reports and they all receive the same reports. We are using BIP Entreprise with the bursting feature and it works very well. The problem is

  • Variation of Target Disk mode?

    I have two Apple laptops. Macbook Pro "A" (A1286) and Alu Unibody Macbook "B" Laptop A is headless. The LCD is dead. I want to recover all that data and put it onto an external drive and NOT transfer the data onto laptop B I do not believe network sh

  • CALL A REPORT FROM ORACLE 10G FORMS

    HI, I HAVE STARTED TO WORK WITH ORACLE DATABASE 11G AND DEVELOPER SUIT 10G. I HAVE A REPORT THAT IT WORKS CORRECTLY WHEN I RUN IT FROM REPORT DEVELOPER. BUT WHEN I WANT TO CALL IT FROM A FORM, IT DOESN'T WORK. IN ORACLE DEVELOPER 6I, I USE "RUN_PRODU