Spark Daemon no OSX
Publicado; fevereiro 26, 2011 Arquivado em: mac os, misc | Tags: cmd+N, maximize vertically, safari tabs, spark daemon, tabs like firefox, terminal tabs, terminal.app, vertical zoom 1 comentárioSem isso dai não rola usar nem o Safari nem o Terminal.
Com o Spark Daemon, costumo criar uns atalhos (shortcuts) que executam código Apple Script, específico por aplicativo.
No Safari, por exemplo, os shortcuts Cmd+1 até Cmd+9 servem pra mudar a aba (tab) do browser, usando este código:
tell front window of application "Safari" to set current tab to tab 1
No Terminal, mesma coisa…
tell front window of application "Terminal" to set selected tab to tab 1
E ainda, o shortcut Cmd+Shift+M pra maximizar apenas na vertical:
tell application "Finder" set _b to bounds of window of desktop end tell tell application "Terminal" tell front window set {_x, _y, _w, _h} to (get bounds) set _vz to item 4 of _b set bounds to {_x, 10, _w, _vz} end tell end tell
Anúncios
Adorei, vc não sabe como isto me fazia falta!