Per monitor screensaver?

I just got a new Lion MBP, and now that I've got a graphics card that doesn't choke while running my external 1920x1200 monitor and the laptop display, I've decided to use both as a dual monitor setup.
The screen real estate is great for when I'm actually working, but for web browsing and emails, one screen is basically dormant.
By default, any interaction with your computer delays the screensaver, but I'm wondering if there's any hidden settings or 3rd party apps that would allow each monitor to have its own screensaver timer. So, if I haven't actually moused in a screen for say 20 mins, the screensaver would kick in, until I moused into that screen again.
I ask because my external monitor is getting old, and I'm starting to notice it burning in quickly, and I can't be the only one who switches between single and multiple displays in normal use.
Does something like this exist, or is it a pipe dream?

no, that's not possible. but if you set the screensaver to display pictures from a folder different pictures will show on different displays.

Similar Messages

  • Wingo: floating and tiling window manager with per-monitor workspaces

    More screenshots.
    Wingo has two features which, when combined, set it apart from other window managers (maybe):
    1) Support for both floating and tiling placement policies. Wingo can be used as a regular floating (stacking) window manager, complete with decorations, maximization, sticky windows, and most other things you might find in a window manager. Wingo can also be switched into a tiling mode where window decorations disappear, and windows are automatically managed via tiling.
    2) Workspaces per monitor. In a multi-head setup, each monitor can display its own workspace---independent of the other monitors. This makes changing your view of windows in multi-head setups much easier than in most other window managers, which will only allow you to see one workspace stretched across all of your monitors. Also, since placement policies like floating and tiling affect workspaces, this makes it possible for one monitor to be tiling while another is floating!
    Inspiration
    Wingo is heavily inspired by Openbox and Xmonad (and of course, pytyle). Basically, Openbox's floating semantics (although most window managers are the same in this regard) and Xmonad's automatic tiling style plus its workspace model (workspaces per monitor). I've also adopted Xmonad's "greedy" workspace switching and embedded the concepts from the "DynamicWorkspaces" contrib library into the Gribble command system.
    Configuration
    Wingo is extremely configurable. This includes binding any of a vast number of commands to key or mouse presses, theming your window decorations and setting up hooks that will fire depending upon a set of match conditions.
    All configuration is done using an INI like file format with support for simple variable substitution (which makes theming a bit simpler). No XML. No recompiling. No scripting.
    Configuring key/mouse bindings and hooks uses a central command system called Gribble. For example, one can add a workspace named "cromulent" with this command while Wingo is running:
    AddWorkspace "cromulent"
    But that's not very flexible, right? It'd be nice if you could specify the name of workspace on the fly... For this, simply use the "Input" command as an argument to AddWorkspace, which shows a graphical prompt and allows you to type in a name:
    AddWorkspace (Input "Enter your workspace name:")
    The text entered into the input box will be passed to the AddWorkspace command.
    Please see the HOWTO-COMMANDS file for more info. We've barely scratched the surface.
    Scripting Wingo
    So I lied earlier. You can kind of script Wingo by using its IPC mechanism. While Wingo is running, you can send any command you like:
    wingo-cmd 'AddWorkspace "embiggen"'
    Or perhaps you can't remember how to use the AddWorkspace command:
    wingo-cmd --usage AddWorkspace
    Which will print the parameters, their types and a description of the command.
    Want to pipe some information to another program? No problem, since commands can return stuff!
    wingo-cmd GetWorkspace
    And you can even make commands repeat themselves every X milliseconds, which is ideal for use with something like dzen to show the name of the currently active window:
    wingo-cmd --poll 500 'GetClientName (GetActive)' | dzen2
    Finally, you can see a list of all commands, their parameters and their usage: (even if Wingo isn't running)
    wingo-cmd --list-usage
    (Wingo actually can provide enough information (or will soon) for ambitious hackers to script their own layouts in whatever programming language they like without ever having to deal with X at all. Assuming it has support for connecting to unix domain sockets. Or you could just use a shell with 'wingo-cmd' if you're into that kind of tomfoolery.)
    Dynamic Workspaces
    Having some set number of workspaces labeled 1, 2, 3, 4, ... is a thing of the past. While Wingo won't stop you from using such a simplistic model, it will egg you on to try something else: dynamic workspaces.
    Dynamic workspaces takes advantage of two things: workspace names and adding/removing workspaces as you need them.
    This is something that I find useful since I'm typically working on multiple projects, and my needs change as I work on them. For example, when working on Wingo, I might add the "wingo" workspace, along with the "xephyr" workspace and the "gribble" workspace. When I'm done, I can remove those and add other workspaces for my next project. Or I can leave those workspaces intact for when I come back to them later.
    With Wingo, such a workflow is natural because you're no longer confined to "removing only the last workspace" or some other such nonsense. Plus, adding a workspace requires that you name it---so workspaces always carry some semantic meaning.
    (N.B. I don't mean to imply that this model is new, just uncommon; particularly among floating window managers. I've personally taken the model from xmonad-contrib's DynamicWorkspaces module.)
    Tiling layouts
    Right now, only simple tiling layouts are available. (Vertical and Horizontal.) Mostly because those are the layouts that I primarily use. I'll be adding more as they are demanded.
    Dependencies
    Wingo is written in pure Go (including all of its dependencies). As such, Go (and git) is the only package necessary to build and install Wingo. Once Wingo is installed, Go can be removed. (No Xlib/xcb, no cairo, no gui toolkits.)
    Installation
    Wingo is in the AUR. Alternatively, if you have a Go environment set up, you can download, build and install Wingo and all of its necessary dependencies with:
    go get github.com/BurntSushi/wingo
    go get github.com/BurntSushi/wingo/wingo-cmd
    (Yes, Go's build system is really that awesome.)
    There's a lot more at Wingo's github.
    Please note that Wingo should be considered in a very alpha state. I've been using it for a little bit myself, but beyond that, Wingo is untested.
    Last edited by BurntSushi (2012-10-22 06:02:16)

    netfun81 wrote:wow, nice wm.  Install was a breeze, love having floating layout on one screen and tiling on another.   In the past, for certain apps that wouldn't play well with a tiling wm, I would have to kill X, change my .xinitrc to start openbox and startx again.   This seems like the perfect solution.
    Thanks :-)
    netfun81 wrote:Does "go get github.com/BurntSushi/wingo"  always pull the latest from git?   Can i just delete the wingo executable from go/bin and run command to upgrade to latest or do I need to delete config files each time to remain compatible?
    Yes, `go get ...` always pulls from the latest git. I make sure that Wingo builds before pushing to `master`. I'll use a different branch for any longer term experiments.
    You could use `wingo-git` in the AUR, but `go get` is just as good. (Indeed, the PKGBUILD uses `go get`!)
    One note those, use this to update to instead:
    go get -u github.com/BurntSushi/wingo
    go get -u github.com/BurntSushi/wingo/wingo-cmd
    You shouldn't have to delete any executables.
    As far as configuration files go... I'm not sure. I haven't figured out how I'm going to handle them yet. I don't think any well-formed configuration file will break Wingo, but it's certainly possible that old configuration files will miss out on new features/options. (For example, I just added some new focus follows mouse options.) Wingo will always maintain an in-memory default configuration, so missing configuration options will also never break Wingo.
    You can always check out the new configuration files by running `wingo --write-config`. You'll have to move `~/.config/wingo` to a temporary location first though.
    If you're installing from the AUR, I'll try to add post installation messages for any big changes.
    FYI, I should say that installation is so easy because of Go. :-) /plug
    Last edited by BurntSushi (2012-10-26 21:07:44)

  • Dual Monitor Startup Problem on MacPro - Solved

    I have a model 53135LL/A = mid 2010 MacPro with 8 cores, DUAL monitor cards and monitors, 24GB memory, running Lion 10.7.3.  It is important to note that I am also using the Apple bluetooth Magic Mouse and the smaller, bluetooth keyboard (no numeric keypad).  This unit was supplied with Lion in December 2011 and has had a startup problem from the beginning as follows:
    1 - when starting from a cold start the dual monitor positions are reversed from the correct position
    2 - additionally the USB and firewire connected devices (e.g. Wacom tablet, 2 card readers) do not function properly.
    The workaround for me has been to start the system, wait for the logon screen, then click restart. Upon restart everything comes up and functions correctly.
    Specifics on my setup and starting problems:
    1 - My main monitor (Monitor #2) is a large gamut monitor that is located to the right. This monitor is connected to card slot 1 as that is the faster card slot (pcx16). The second monitor (Monitor #1) is an ordinary unit and connected to card slot 2 (pcx4). The monitors are set up as an extended desktop.
    2. The Wacom tablet (Intuous 3 wide) is connected to USB port on rear of machine. CF card reader by Delkin is connected to Firewire on rear of machine, and an SD card reader is connected to USB on the rear of the machine.
    3. My dock is positioned on the left side of the left monitor. The menu bar is along the top of the left monitor, and all desktop icons are on the left monitor.  The right monitor has no items on it.
    On a typical cold start, as mentioned above, the apple logo appears on the right and then the logon screen appears on the right. 
    If I proceed to logon at that point, all the desktop items move to the right monitor and the computer thinks the positions are reversed.  In other words, it behaves as though the right monitor (#2) is on the left of the desktop and left monitor (#1) is on the right. 
    Additionally, the Wacom tablet using either pen or mouse does not map over the full desktop range.  If I use either card reader and then eject the card, no further card insertions will be recognized.
    To fix this, I simply restart the machine thru the apple menu and everything comes up correctly.
    I had discovered, that instead of completing the logon on a bad cold start, I could simply restart from the logon screen and all would work correctly.
    On occasion, the logon screen would come up on the left monitor (as it should do) and in that case, if I log on all works correctly.
    I have worked with Apple support on the phone, clearing setup ram etc. Have had the unit in to Apple store for hardware check, all OK.  Next suggestion was reload OS and start over - no thanks.
    SO - Here is the latest.
    If I turn off my keyboard and mouse before starting the machine, then wait for the logon screen to appear - It starts correctly, with the logon screen on the left.  I can then turn on my keyboard and mouse and all works as it should.
    Bottom line - there appears to be a startup issue with Bluetooth devices from a cold start.  Note that once the machine has been used for a bit, I can turn it off for short periods of time (e.g. 30 minutes) and it will start correctly even with the mouse and keyboard turned on.

    mkaito wrote:
    That's how dwm behaves. I believe dwm's multihead support is rather lackluster out of the box. You might want to check out some of the patches they have, and ask around in the dwm hackers thread.
    I currently have dwm simply draw status on all monitors, but I'm investigating separate status bars per monitor. We'll see where that takes me. Dwm is a tinker's WM!
    i found the patch , thanks!

  • High PPI Support Multiple Monitors: How it comes that Remote Desktop implements the hight PPI support very well and win 8.1 doesnt?

    http://skovalev.de/wp-content/uploads/2014/05/RemoteDesktop-HighPPI-Perfect.png
    Hello all: i am using an High PPI Monitors from Dell XPS15 (3600x1800) and a Normal FullHD above it. The FullHD monitor is an external device and is set up as the primary device. Scaling is set to per Monitor DPI.
    Now the Question: how it comes, that my RemoteDesktop on the secondary (internal) screen has almost perfect implementation for this????
    BUT i am am talking only about the RemoteDekstopManager, normal one does not works with high ppi in this way... Also ModernUI has no problems with scaling
    http://skovalev.de/wp-content/uploads/2014/05/Firfox-and-Resolution-RemoteDesktop.png
    NOTE that the resolution on the remote desktop is set to 1600x900 and there are NO scaling problems even on the 3200x1800 monitor!
    On both picutures you find the dell monitor on the bottom and the scaled original windows explorer/firefox on the bottom right. See how blurry it is? I really breaks my eyes :(
    I hope Microsoft can finally fix the high PPI Monitors issue, since the solutions seems to be already implemented

    No, i mean the Scaling Support.
    If you use multiple monitor, in windows 8.1 you can scale per monitor. If you use this option with a High PPI monitor, like ultra HD or 4K, the image on the monitors with other PPI than the main monitors appears fuzzy and blury.
    But there are also scaling problems even if you use only single monitor. This article blog describes it pretty good:
    http://www.hanselman.com/blog/LivingAHighDPIDesktopLifestyleCanBePainful.aspx
    By the way there are lot article like this describing the scaling problems, not only by users but also by professinals and IT magazines...
    BUT here it comes: watch @ my screenshots. If the remote desktops resolution is 1800x900 and the native resolution is 3600x1800, there are no scaling problems! HOW? So like you can see on my screenshots a native application on my monitor appears fuzzy while
    the same application runnin of the remote desktop has clear type!
    That means for me, that windows HAS the possibility to scale clearly, but somehow this feature is only supported by RDCM...

  • How to know if this computer can handle a certain monitor's resolution?

    I am looking to buy a new monitor, but I am at a loss as to how to know whether my computer can handle the monitor's resolution, will be compatible with it. I used to run two NEC Multisync FE991SB (CRT) monitors side by side, and one of them died. Their native resolution seems to be 1280x1024 per monitor. I am considering buying a DoubleSight DS-263N (LCD) monitor, which has a native resolution of 1920 x 1200, and running it alongside the NEC Multisync FE991SB that has not died. Here are the relevant vital statistics:
    Hardware Overview:
    Machine Name: Apple Power Mac G5
    Machine Model: PowerMac7,3
    CPU Type: PowerPC G5 (2.2)
    Number Of CPUs: 2
    CPU Speed: 1.8 GHz
    L2 Cache (per CPU): 512 KB
    Memory: 4 GB
    Bus Speed: 900 MHz
    Boot ROM Version: 5.1.8f7
    Graphics/Displays:
    GeForce FX 5200:
    Chipset Model: GeForce FX 5200
    Type: Display
    Bus: AGP
    Slot: SLOT-1
    VRAM (Total): 64 MB
    Vendor: nVIDIA (0x10de)
    Device ID: 0x0321
    Revision ID: 0x00a2
    ROM Revision: 2060
    Displays:
    NEC FE991SB:
    Resolution: 1280 x 1024 @ 85 Hz
    Depth: 32-bit Color
    Core Image: Supported
    Mirror: On
    Mirror Status: Hardware Mirror
    Online: Yes
    Quartz Extreme: Supported
    DoubleSIght monitor specs (I might buy one of these):
    Display
    Viewable Area:550.08 x 343.8(H x V)Pixel Pitch:0.2865mm x 0.2865mmMax. Visible Angle:178' / 178'Response Time:5 ms (G T G)Brightness:500 cd/m typ.Aspect Ratio:16:10Contrast Ratio:800:1 typ.Recommended Resolution:1920 x 1200 max
    Monitor Stand
    Adjustable Monitor Stand:Tilt
    Video Signal
    Horizontal Frequency:31.5~ 82.3KHzVertical Frequency:56~76HzDigital Signal:HDCP Capable
    Interface
    Interface type:VGA 15-pin D-sub type/DVI-D type
    Power
    AC:Input: AC 110~220V, 50~60Hz; Output: DC+24V, 5.0APower Consumption:135W max., 2W Power Save Mode
    Characteristics
    Controls:Graphic OSD, Auto AdjustmentUSB:4 USB portsDimension:23.5in W x 18.0in H x 11.0in DWeight:23 lbs.Certification:FCCWarranty:Three year limited warranty (parts & labor)
    VESA
    VESA:100mm x 100mm
    Any advice on how i can learn about compatibility? And on what card i need to buy, if i do need to buy one? Thanks.

    Dear Discussion Folks,
    Thank you all so much for your help. I think I understand now, as a result of your comments and this reply from NVIDIA customer support:
    "I understand from your mail that you would like to know if GeForce FX 5200 Ultra supports your monitor that has a recommended digital resolution of 1920 x 1200.Please be informed that as per the NVIDIA records, the maximum digital resolution supported by this graphics card is 1600 x 1200 and the maximum analog resolution supported by this graphics card is 2048 x 1536. Since you have mentioned in your e-mail that the Apple's specs page says that the maximum digital resolution supported by this graphics card is 1920 x 1200, in this case, I request you to contact Apple Support over phone and get confirmed on this. The reason why I am requesting you to contact Apple is because, we at NVIDIA, manufacture only the basic chipsets for the graphics cards and sell them to Apple Computers. The Apple Computers produce the graphics cards using the NVIDIA chipsets."
    This reassured me that there's no reason to worry about the appearance of a contradiction between the Apple tech sheet and the NVIDIA tech sheet. I went ahead and ordered this monitor today: the DoubleSIght DS- 265W.
    (by the way, sorry about typing 1900x1200 when I meant 1920x1200).
    After it arrives in a week or two, I'll update this thread to confirm that its resolution is supported by the GeForce FX 5200 Ultra card.
    Thanks again,
    Mark

  • Macbook pro 13 (i7-2.8), 3 external monitors?

    Hello. I want 3 external monitors with my MB Pro late-2011 and i can't figure out how to do that properly. So here is variants:
    (First of all, i plan to buy HengeDock + powered USB hub)
    1) Matrox triplehead2go. Bad part - only 1024x768 res per monitor. Plus - displayport.
    2) 3x Diamond BVU195. USB. Supports FullHD monitors, so i can go with widescreen models. But - DVI. And can one USB 2.0 port hold three monitors? Displayport can have 17Gbps (on all lanes)
    Anyone have one of these devices? I really need suggestions.

    I don't see any DDR3L on the page for the RAM that would fit your model -> http://eshop.macsales.com/shop/memory/Apple_MacBook_MacBook_Pro/Upgrade/DDR3_133 3MHz_SDRAM.
    But the answer is that it doesn't really matter - just make certain to get 1333MHz.
    Good luck,
    Clinton
    MacBook Pro (15-inch Late 2011), OS X 10.??, 16GB Crucial RAM, Crucial M500 960GB SSD, 27” Apple Thunderbolt Display

  • [Solved] dual monitor statusbar problem (dwm)

    Hi all , have a problem with status bar in dwm . The status bar change their position between monitors , if i work in the monitor1 the status bar is in monitor1 , but if i change to the monitor2 the status bar goes to monitor2 . 
    I would like to leave the bar in a single monitor or in both . Thanks in advance
    (i used conky status bar and xrandr)
    Last edited by Lordii (2013-04-04 13:36:53)

    mkaito wrote:
    That's how dwm behaves. I believe dwm's multihead support is rather lackluster out of the box. You might want to check out some of the patches they have, and ask around in the dwm hackers thread.
    I currently have dwm simply draw status on all monitors, but I'm investigating separate status bars per monitor. We'll see where that takes me. Dwm is a tinker's WM!
    i found the patch , thanks!

  • Multi monitor problem

    hi everybody!
    i have the desktop expanded on 2 monitors. and now, if i play a game i can motion the mouse on the second monitor. so if i press a mouse button, the game minimized.
    do you know what i mean and can help me?

    From what I've seen, Java can't programmatically make a single window span multiple monitors. One JFrame (or one JWindow, or one fullscreen window) per monitor seems to be the only way to go. There doesn't seem to be a problem with this approach; you'd just have to shift pages from one frame to the other (presumably you could just move whatever object you're displaying in the page, rather than re-parsing the HTML.)

  • Disable USB per USER

    Hi guys,
    i really need your help to disable USB per User. I have installed Windows WMS 2012 on a server and it is connected with USB to LG monitors, my issue is i have to disable USB devices per Monitor. Can anyone help me it is very urgent !!!
    Kind Regards,

    The easiest way is to set the permissions on the
    printer utility for only the Admin account.
    Go to the Applications\Utilities\Printer Utility.
    Getinfo on the Printer Utility and set the "others"
    to No Access.
    Be sure to remove the printer(s) from the accounts
    you don't want to have printing. This is a global
    change and there won't be any printers available
    under the users account. This will prevent (Kids)
    users from adding a printer.
    I just tried this and I could not get it to work for me. I changed the access on Printer Setup Utility and removed the proxy printers (~/Library/Printers) and all .plist files having to do with printing (~/Library/Preferences) from a non-administrative user account. I was still able to print from Word without any problems.
    Also, when I Repaired Permissions, the permissions for the Printer Setup Utility returned to "factory specs" and "Others" again had Read permission.
    Did I misinterpret your instructions?
    Matt

  • Multiple monitor DPI Issues (Desktop not Metro)

    Hi,
    I have a Lenovo Yoga 2 pro with Win 8.1, which has an ultra high resolution (3,200X1,800) and I am using it with a Targus docking station.  In order to see things, I have the custom DPI scaling set at 250%.  Here is the problem, when i use the docking
    station with an external monitor that has a maximum of 1900X1200, Metro looks nice, but anything on the desktop (office and other desktop only programs), everything is HUGE and unusable.  If I try to set DPI scaling for multiple monitors, I can no longer
    use my custom 250% DPI for the Lenovo, instead, I am given a slider that makes the external monitor look nice, but when the laptop is removed, it is so small that I'd need a magnifying glass to see.  If I want to use a docking station, I have to change
    the DPI scaling every time I switch between being docked and as a standalone, which requires me to go through all of the steps to switch and then log out and log back in.  Is there a way to have custom DPIs for each monitor?  I think this will only
    become a bigger problem as more companies develop higher resolution devices.
    Thanks,
    Dean

    Same issue here. I have looked on a lot of forums, and there are a lot of people who just don't understand the issue - offering completely irrelevant advice!
    As with a number of others on this thread, I have a Surface Pro 3... fantastic machine, and beautiful display. But connect my external 1080x1920 24" display, and everything is too large on the external... so as with everyone else, I have to set the
    Change the size of all items option in display settings, set it to the smallest value, then log out, and log back in. That fixes the external display, but...
    Having to make this setting change every time I connect or disconnect to an external monitor is annoying enough... but having to log out, and then log back in to see the change is ridiculous!
    But what REALLY annoys me is that I like to use extended display mode - I love to work with two monitors - my lapyop and external display side by side. With the scaling set to lowest, so that the external display looks correct, the Surface Pro 3 screen is
    just unusable - its too small, and gives me a headache trying to use it. It makes me feel like an old man complaining that "owwww its too small for my old eyes!".
    I realise that this is a Windows issue - but heck, if the Surface Pro 3 is really the tablet to replace my laptop, this flaw in Windows makes the SP3 a NON laptop replacement. Using dual monitor setups with my portable is essential to how I work.
    I almost can't believe that in 2014 Windows still does not have proper per monitor PPI settings. Technology has landed a probe on a bloody comet for crying out loud - why can't Windows have proper UI scaling per monitor??!!
    What really scares me is that I dont think this is a simple fix for MS, and it may be some time before we see this resolved... but here's hoping Microsoft are already working on s solution.
    I'd like to see a Microsoft representative give us an official update on this issue... Hello? Are you out there?

  • Mavericks with Multiple Monitors?

    I keep my tool pallets arranged on my second monitor. Ever since I upgraded to Mavericks Photoshop, InDesign and Illustrator all lost my workspace settings whenever the monitors go to sleep. I can restore everything by chooseing Reset Workspace, but this is getting real old. Usually after waking up the monitors, the palettes either all show up in my main monitor or almost completely off screen on my second monitor?
    Am I the only one having this problem?
    Only other thing I have noticed wierd in CC since moving to Mavericks several weeks ago is that Photoshop sometimes switches to the Color-Wheel cursor (but not spinning) at times regardless of which tool is selected - eventually it will switch back, but have not identified what causes it to restore itself.

    Fwiw, I think this is expected behavior.  Aperture is set to use multiple monitors in the same (OS determined) "Space".  In Mountain Lion, you could not show two spaces at the same time. In Mavericks you can assign a monitor to a space (this is the default).  But if you want an app to use both monitors, you have to turn off this feature.
    As I see it (actually, I don't -- I haven't upgraded to the big wave), the hierarchy was:
    Space(s)
    Monitors (all in same Space at any given time)
    Apps
    and now it is (by default):
    Monitor(s)
    Space(s) (one per monitor)
    Apps.
    What you are asking is to have each Monitor display a Space, and have an app (Aperture) run in two Spaces at the same time.  That might be asking too much. 

  • [SOLVED] openbox margins with dual monitors

    Hi community,
    I have stumbled to a nasty problem on my first incursion to dual monitors in openbox.
    I'm using xrandr with this command (which works just fine BTW):
    xrandr --output LVDS --mode 1280x800 --primary --output VGA-0 --mode 1280x1024_60.00 --gamma 1.0:1.4:0.85 --right-of LVDS
    and have set a Virtual screen in xorg.conf of 2560 x 1024 pixels.
    But, my laptop monitor only handles 1280x800, while my external LCD monitor has 1280x1024, so there is a virtual area under my laptop screen which i'm not using, but i dont really care about that.
    The problem is that when I'm setting screen margins, so that maximized windows will respect the panels in the bottom (tint2), in rc.xml (or by obconf) the margins are applied to the virtual screen and only are practical on the external monitor wich has more pixel height.
    I'm really missing some kind of per monitor margin settings in openbox, maybe there is and i haven't found it? It makes me wonder because openbox can maximize windows to a single monitor, even if the whole layout it's treated like a virtual screen, so it has some way of distinguishing between them.
    I would appreciate any suggestions, thanks.
    Last edited by andreamer (2010-07-26 18:32:15)

    TL;DR - I'm not aware of any acceptable solution at the moment.
    Basically, what you're having problems with, is the "dead area." It can really be quite a pain in the butt if window managers or other screen aware applications don't anticipate it properly. To my knowledge, Openbox doesn't support margins on a monitor-by-monitor basis. In reality, you shouldn't need to be setting margins anyway. Tint2 should be reporting itself as a taskbar, and Openbox should be respecting that.
    I have dead area too, with multiple monitors, and Openbox respects both of the KDE taskbars I have running (one on each monitor). (I use KDE and simply replaced Kwin with Openbox.) This tells me that tint2 should be able to cooperate with Openbox. I remember trying tint2 a while ago, and didn't fine it adequate in a dual monitor environment (it was probably a year ago or so). tint2 would need to be setting the _NET_WM_STRUT_PARTIAL hint, and I'm not sure if it is (or if it's doing it properly). See http://standards.freedesktop.org/wm-spe … #id2507618
    Also, I do know that the developer for Openbox recently got a dual monitor setup, and she's been adding additional support for dual monitors a little at a time. Hopefully with 3.5, there will be a lot more support. (Margin support for multiple monitors would be great, because it could be a good utility knife for applications that don't care about multi-monitors setups and don't set the proper hints.)
    If you're capable of modifying tint2, my course of action would be to try something that works (like the KDE taskbars) and record the hints being set there. Then compare them with tint2 and try to mirror KDE's setup. (If you're a programming lacking experience with X and related nonsense, I'd be more than willing to offer what guidance I have.)
    Also, I developed a panel myself (and got pretty far along) using the PyGTK toolkit... But I can't remember if I solved this problem or not. I'll try to check it out and get back to you. (I got as far as implementing a widget system that includes a task list, system tray, clock, menus... It just isn't polished very well. My original intention was for it to be a more robust PyPanel with dual monitor support.)
    Last edited by BurntSushi (2010-07-24 22:46:23)

  • Specific Monitor - Notification schedule

    Hello Everyone,
    I wonder if it's possible to setup a schedule for notifications beeing sent per monitor.
    For Example in our environment every night at 10 PM the snapshots of our NetApp Volumes are being made. So we get "Lun Latency" and "Controller Latency" email warnings every night because of the increased overall utilization of our network.
    It would be great to disable notification emails of these monitors in a period between 10 PM and 2 AM.
    Is there a way to realize this?
    Cheers,
    Marius

    Hi,
    1. Create a monitor clone with scheduler
    https://social.technet.microsoft.com/Forums/systemcenter/en-US/ffd4cd0c-7188-48de-8d1e-113e417ca0ce/how-do-i-disable-a-scom-monitor-for-a-particular-time-period-scom-2007-r2?forum=operationsmanagergeneral
    2. Reorganize subscription
    - subscribe to these monitors with specific subscriber who has necessary scheduler
    - exclude these monitors from other subscribers 
    (if any)

  • Monitors Not Resetting Health After 30 Day Auto Resolution

    When we get an alert it is in the console and does send an email. Now after 30 days of this monitor being open (and not returning to a healthy state in which case it would close since most of the monitors auto resolve when they return to healthy state)
    it closes as we have the global setting of "Resolve all active alerts in the new resolution state after:". However, the monitor does not return to a healthy state. Is this the way SCOM operates? In which case is their a way to run a "Reset Health"
    the resets all the monitors for a particular Windows computer instead of having to go to health explorer and run this per monitor?

    1)  Resolve all active alerts in the new resolution state after:". However, the monitor does not return to a healthy state. Is this the way SCOM operates
    The resolve all active alers in new resolutio state after XXdays option is just close the active alert and is does not reset the health state of underneath monitor
    http://syscentercldman.blogspot.hk/2014/08/scom-auto-close-alert.html
    2) a way to run a "Reset Health" the resets all the monitors for a particular Windows computer instead of having to go to health explorer and run this per monitor
    please refer to the following blog
    http://blogs.technet.com/b/timhe/archive/2009/01/15/announcing-the-greenmachine-utility-for-operationsmanager-rtm-sp1-and-r2.aspx
    http://sc.scomurr.com/scom-2012-monitor-reset-cleaning-up-the-environment/
    Roger

  • PB Al 15" won't display to Dell 2001FP via DVI

    After hooking up a Dell 2001FP display to my PowerBook Al 1.5Ghz/15" via DVI, the external display displays nothing. The Mac senses the display per Monitors system preference and Apple System Profiler but nothing is output to the display. I'm using Dell's bundled DVI cable (which appears to be a DVI-D single link, per http://www.comsol.com.au/dvi.asp). DVI works just fine via PB G4 1.5Ghz/12".
    As a workaround, the VGA is working fine from the PowerBook to this display. I'd really, really much rather use DVI. Is there any way to get this PB Al 15" to work via DVI to the Dell 2001FP? Possibly via some different kind of cable?
    Scanning the Apple forums didn't get me a direct answer. I vaguely remember something unique about the 15" DVI with certain third party configurations.
    PB G4 1.5Ghz/15"   Mac OS X (10.4.6)   Dell 2001FP

    Try resetting your NVRAM…
    http://docs.info.apple.com/article.html?artnum=2238
    Another thing to try is to change the ends of the DVI-D cable. I too am using the included cable that came with my Dell display and it works just dandy. Obviously if it works with your 12" PowerBook then the problem is with the 15" PowerBook.
    It is possible that the 15" is trying to display at a setting that your display can't handle. What you can do is to open the Displays System Preference, click on the Gather Displays button and try different settings. Make sure you start at a 60Hz refresh rate.
    To be honest it's a bit weird that you're having a problem because it, as I'm sure you're aware, should just work.

Maybe you are looking for

  • No HP Laserjet 8150n driver?

    Suddenly my HP 8150n Laserjet won't print at the resolution it used to, and when I try to add the software for it from within the Add Printer function in Print Preferences, it says there isn't any. Running 10.8.5 on an iMac. Anyone know a workaround?

  • SharePoint 2010 Content database growing too fast

    Hi, I have a SharePoint 2010 Content database wss_content_DB which is 197 GB BUT when I calculate my site collection I can see they have used only about 70 GB. I know there is Auditdata table which is about 27 GB. Couple of days ago my content DB was

  • VGA Adapter for iPad

    Help. I built a photo presentation on my iPad using the Keynote app. yesterday I stopped into the Apple store and picked up a VGA Adapter so I could view the presentation via projector. I can't seem to get it to work. The projector works with my lapt

  • Global Database Names issue

    Oracle 10gR2, Windows, 64bit. This code produces the infamous ORA-02069 Global Names must be set to TRUE error: insert into job_bag@dblink1 (job_bag_id, user_id, name, created_date, status) values (job_bag_id_seq.nextval@dblink2, 80487, 'Some Name or

  • Debit Credit Netting.

    Hi All, Can anybody tell me how we check the netting of all the Debit Memo and Credit memo for a particular vendor/customer  ? Where we can check this, what is the T.Code and Procedure.? Thanks in advance Bikash