Altera o tamanho do terminal OS X usando o teclado

1

Ao digitar um terminal no OS X, eu gostaria de redimensionar a janela na qual estou digitando sem tirar as mãos do teclado. Existe uma maneira fácil de fazer isso? Se não, alguma ideia de hacks?

    
por Peter Berg 02.11.2013 / 23:27

2 respostas

2

Você pode usar Slate para configurar atalhos de teclado para redimensionar e mover janelas:

bind right:ctrl,alt resize +50 0
bind left:ctrl,alt resize -50 0
bind up:ctrl,alt resize 0 -50
bind down:ctrl,alt resize 0 +50

Você também pode usar as sequências de controle xterm :

printf '\e[8;24;80t' # resize to 80x24
printf '\e[3;0;0t' # move to top left corner
printf '\e[9;1t' # maximize
printf '\e[9;2t' # maximize vertically
printf '\e[9;3t' # maximize horizontally

ou AppleScript:

osascript -e 'tell app "Terminal" to tell window 1' -e 'set b to bounds' -e 'set item 3 of b to (item 1 of b)+500' -e 'set bounds to b' -e end

    
por 06.11.2013 / 22:38
0

O comando + tornará a janela e o texto maiores, o que é tão bom quanto você conseguirá com o teclado.

    
por 06.11.2013 / 19:34