J'ai rencontré le même problème il y a quelque temps, et voici ce que j'ai fait:
Tout d'abord, j'ai reflété les affichages, comme cela a déjà été suggéré. Peu de temps après avoir fait cela, j'ai réalisé que c'était très distrayant d'avoir l'écran allumé du macbook dans le coin de l'œil. Cela m'a obligé à tuer la luminosité sur l'écran du macbook. Mais étant le gars paresseux que je suis, je détestais devoir régler manuellement la luminosité à chaque fois que je débranchais / branchais un moniteur externe. Je me suis donc demandé s'il y avait un moyen d'automatiser le processus. J'ai trouvé cette application gratuite appelée Control Plane qui me permet de définir des «contextes» selon que certains appareils (moniteurs, disques durs, etc.) sont branchés, si certains réseaux Wi-Fi sont à portée, etc. et en fonction de ces contextes, exécutez certains scripts shell. Donc, tout ce que j'avais à faire était d'écrire un script Apple (appelékillBrightness.scpt
) pour tuer la luminosité sur l'écran du macbook et un script shell à appeler killBrightness.scpt
; et appelez ce script shell dans le contexte requis.
killBrightness.scpt
tell application "System Preferences" to set current pane to pane "Displays"
tell application "System Events"
tell process "System Preferences"
repeat with theWindow in windows
if title of theWindow as string is "Color LCD" then
tell tab group 1 of theWindow
tell slider 1 of group 2
set value to 0
end tell
end tell
end if
end repeat
end tell
end tell
tell application "System Preferences" to quit
Le script shell
#!/bin/sh
osascript /path/to/killBrightness.scpt
Depuis que je branche de nombreux moniteurs différents dans mon macbook, j'ai remarqué que lorsque l'un avec un rapport d'aspect différent est branché, mes fenêtres pendent du bord de l'écran. La solution à cela serait de redimensionner les fenêtres, mais c'est très inefficace lorsque vous utilisez une tonne d'applications et de fenêtres comme moi; aussi, étant aussi paresseux que moi, je n'aimais pas cette solution. Donc, avec l'aide des gens sympas de Stack Overflow, j'ai pu trouver cet AppleScript (appelé resizer.scpt
) pour redimensionner automatiquement toutes les fenêtres de (presque) toutes les applications (la mise en garde est que certaines applications n'utilisent pas la bonne Les crochets du cadre de l'interface utilisateur, il est donc assez difficile de les redimensionner):
resizer.scpt
:
property blacklist : {"Finder", "Preview", "Console", "AppleScript Editor", "Spotify", "TaskCoach", "Skype", "VirtualBox"}
property buttonApps : {"LyX", "Eclipse"}
property buttonMaps : {{name:"LyX", Button:1, pname:"lyx"}, {name:"Eclipse", Button:2, pname:"eclipse"}, {name:"Spotify", Button:3, pname:"Spotify"}, {name:"TaskCoach", Button:3, pname:"TaskCoach"}}
tell application "Finder" to set theBounds to bounds of window of desktop
tell application "System Events"
set bids to bundle identifier of processes where background only is false
end tell
repeat with bid in bids
tell application id bid
if name is not in blacklist then
set appName to name as string
if name is "Terminal" then
set newBounds to {0, 0, (item 3 of theBounds) - 10, item 4 of theBounds}
repeat with theWindow in windows
if visible of theWindow is true then
set bounds of theWindow to newBounds
end if
end repeat
else if name is not in buttonApps then
try
repeat with theWindow in windows
if visible of theWindow is true then
set bounds of theWindow to theBounds
end if
end repeat
end try
else if name is in buttonApps then
-- get the buttonNumber
repeat with buttonApp in buttonMaps
if (name of buttonApp as string) is appName then
set theButton to Button of buttonApp
end if
end repeat
tell application "System Events"
repeat with theProcess in (processes where bundle identifier is bid)
try
tell theProcess to tell window 1 to click button theButton
end try
end repeat
end tell
end if
end if
end tell
end repeat
Maintenant, tout ce que j'avais à faire était d'écrire un script shell similaire pour appeler resizer.scpt
et mettre cela dans ControlPlane et j'étais prêt à être paresseux à nouveau!
J'espère que cela t'aides
PS: j'ai oublié de mentionner avant que tout cela a été fait sur mon MacBook Pro 15 pouces, exécutant Lion