Tela dividida como o Windows ou o Unity

1

Estou procurando no Debian wheezy uma maneira de dividir a tela em duas janelas, assim como você pode fazer no Ubuntu ou no Windows7 / 8.

Quero dizer, estou acostumado a selecionar uma janela e apertar windowskey + left e selecionar outra e windowskey + direita, para que eu possa aproveitar a tela 16: 9.

Existe algum pacote ou aplicativo externo para fazer isso no Debian wheezy com o GNOME 3.4?

    
por lostcitizen 19.02.2014 / 16:55

1 resposta

1

Agora estou usando o Cinnamon, que faz isso por padrão, basta arrastar a janela para a esquerda e maximizar para ocupar metade da tela. Da mesma forma para o topo e para a direita. Isso não funciona para o Gnome? Deve haver uma configuração, procure por "Edge snapping" ou similar.

De qualquer forma, antes de Cinnamon fazer isso, eu tinha escrito um pequeno roteiro que faria isso por mim:

#!/bin/bash

## If no side has been given, maximize the current window and exit
if [ ! $1 ]
then
    wmctrl -r :ACTIVE: -b toggle,maximized_vert,maximized_horz
    exit
fi

## If a side has been given, continue
side=$1;
## How many screens are there?
screens='disper -l | grep -c display'
## Get screen dimensions
WIDTH='xdpyinfo | grep 'dimensions:' | cut -f 2 -d ':' | cut -f 1 -d 'x'';
HALF=$(($WIDTH/2));

## If we are running on one screen, snap to edge of screen
if [ $screens == '1' ]
then
    ## Snap to the left hand side
    if [ $side == 'l' ]
    then
        ## wmctrl format: gravity,posx,posy,width,height
    wmctrl -r :ACTIVE: -b add,maximized_vert && wmctrl -r :ACTIVE: -e 0,0,0,$HALF,-1
    ## Snap to the right hand side
    else
    wmctrl -r :ACTIVE: -b add,maximized_vert && wmctrl -r :ACTIVE: -e 0,$HALF,0,$HALF,-1 
    fi
## If we are running on two screens, snap to edge of right hand screen
## I use 1600 because I know it is the size of my laptop display
## and that it is not the same as that of my 2nd monitor.
else
    LAPTOP=1600; ## Change this as approrpiate for your setup.
    let "WIDTH-=LAPTOP";
    SCREEN=$LAPTOP;
    HALF=$(($WIDTH/2));
    if [ $side == 'l' ]
    then
        wmctrl -r :ACTIVE: -b add,maximized_vert && wmctrl -r :ACTIVE: -e 0,$LAPTOP,0,$HALF,-1
    else
    let "SCREEN += HALF+2";
    wmctrl -r :ACTIVE: -b add,maximized_vert && wmctrl -r :ACTIVE: -e 0,$SCREEN,0,$HALF,-1;
    fi
fi

Depende de disper , wmctrl e xdpyinfo , todos disponíveis nos repositórios da Debian. Ele deve funcionar imediatamente se você estiver usando apenas uma tela, mas precisar ser ajustado (altere o valor de $LAPTOP ) se tiver duas telas.

Eu então atribuí dois atalhos de teclado, um para cada um desses comandos:

  1. Encaixe a janela atual à esquerda

    snap_windows.sh l
    
  2. Encaixe a janela atual à direita

     snap_windows.sh r
    

Eu poderia então executar o atalho de teclado apropriado para obter o efeito desejado. Isso deve funcionar, mas quase certamente há uma configuração para isso no Gnome.

    
por 19.02.2014 / 19:41