Software para gerenciar múltiplos monitores [fechado]

8

Eu tenho dois monitores. Estou procurando por um software que faça o seguinte:

  • Pressione uma combinação de teclas (por exemplo, Alt + A ) e a janela ativa é movida e redimensionada de modo a ocupar todo o espaço disponível no monitor da mão esquerda
  • Pressione uma combinação de teclas (por exemplo, Alt + S ) e a janela ativa é movida e redimensionada de modo a ocupar todo o espaço disponível no monitor da mão direita

O software deve estar livre.

EDITAR Estou usando o Windows XP.

    
por Dónal 19.01.2010 / 16:40

3 respostas

4

Se você tiver o Windows 7, poderá usar a tecla do Windows e as teclas de seta para fazer isso. Win-L e Win-R para mover a janela, Win-Up para maximizá-lo.

Se não, confira DisplayFusion , ou Autohotkey.

    
por 19.01.2010 / 16:44
2

Como Phoshi mencionou, você poderia fazer isso com AutoHotkey se você não tiver o Windows 7. Na verdade, alguém já tem faz um script semelhante para gerenciar janelas em vários monitores chamados WindowPad!

WindowPad

Use a pad concept to arrange windows. Use the Numpad or your own custom layout to move and resize a window to fill the appropriate section of the screen.

Though the concept is based on HiRes Screen Splitter by JOnGliko, I wrote WindowPad from scratch to add some features. Those features are:

  • Multiple-monitor support. It should work with any number of monitors in any setup.
  • Unresizable windows are positioned correctly.
  • Windows that aren't supposed to be resizable (i.e. calc) are not resized.

aqui estão as teclas de atalho atuais:

; WindowPad:
;
;   Move and resize windows with Win+Numpad.
;     Win+Numpad1 = Fill bottom-left quarter of screen
;     Win+Numpad2 = Fill bottom half of screen
;     etc.
;
;   Move windows across monitors. For example:
;     Win+Numpad4 places the window on the left half of the screen.
;     Win+Numpad4 again moves it to the monitor to the right.
;
;   Quick monitor switch:
;     Win+Numpad5 places the window in the center of the screen.
;     Win+Numpad5 again moves the window to the next monitor.
;     (This works by monitor number, not necessarily left to right.)
;
;   QUICKER Monitor Switch:
;     Win+NumpadDot switches to the next monitor (1->2->3->1 etc.)
;     Win+NumpadDiv moves ALL windows to monitor 2.
;     Win+NumpadMult moves ALL windows to monitor 1.
;
;   Other shortcuts:
;     Win+Numpad0 toggles maximize.
;     Insert (or some other key) can be used in place of "Win".

Claro, você pode modificar o código ao seu gosto.

    
por 19.01.2010 / 16:45
-1

O melhor software disponível para esse IMO é Ultramon .

EDIT: Desculpe, apenas leia isso tem que ser livre.

    
por 19.01.2010 / 17:27