riattiva il secondo monitor in el capitan

1

Il mio primo tentativo di eseguire el capitan 10.11.0 su uno dei miei macintoshes è con un mac mini utilizzando una configurazione a doppio monitor.

C'è un monitor HDMI Samsung Syncmaster e un monitor DVI Medion MD20429 collegati tramite la porta del display con un adattatore.

Dopo essere tornato dalla modalità sleep il secondo monitor (DVI) non si presenta da solo. Nella configurazione del sistema / monitor non mostra e solo se uso la chiave di opzione e clicco rilevo monitor (vedi ad esempio link ) tornerà.

I miei computer con OS 10.9.5 Mavericks non mostrano questo effetto indesiderato.

  • Come si può evitare questo comportamento di El Capitan?
  • C'è almeno un clic soluzione alternativa?
  • questo è un bug noto per Apple?
posta Wolfgang Fahl 22.12.2015 - 12:49
fonte

1 risposta

1

Questa è una soluzione in due parti:

  1. un applecript per fare clic sul monitor di rilevamento
  2. uno script bash per eseguire lo script

Ho "salvato" il applescript su $ HOME / source / detectmonitor.scpt (vedi Esegui AppleScript dallo script di bash ) come risolvere il problema che non è possibile inizia davvero con un file di testo ...

Quindi ho salvato il bashscript in $ HOME / dm

Ho creato un collegamento simbolico ln -s $ HOME / Desktop / detectMonitors $ HOME / bin / dm

e imposta le mie preferenze Terminal in base al link

ora posso fare doppio clic su "detectMonitors" sul mio desktop per risolvere il problema.

Applescript per fare clic su "rileva monitor" nelle preferenze di sistema del monitor

vedi link

-- Script to click the "Detect Displays" button
-- 2015-12-22 WF
-- see https://stackoverflow.com/questions/12640643/applescript-to-run-detect-displays
-- adopt to your language settings by setting the right button name below
-- currently this is german "Monitore erkennen"
-- to create and run this script you need a compiled scpt file to begin with see
-- https://apple.stackexchange.com/questions/103621/run-applescript-from-bash-script
-- then you also need to set the security settings
tell application "System Preferences"
    activate
    reveal pane "com.apple.preference.displays"
end tell

delay 0.5

tell application "System Events"
    tell process "System Preferences"
        try --don't even consider not using a try block!
            key down option
            delay 0.5
            --click button "Detect Displays" of window 1
            click button "Monitore erkennen" of window 1
            delay 0.5
            key up option
            tell application "System Preferences"
                quit
            end tell
        on error errMsg --logging out is the only other way to clear these
            key up option
            display dialog "ERROR: " & errMsg
        end try
    end tell
end tell

Bash-Script per eseguire il applescript

#!/bin/bash
# WF 2015-12-22
# run detect monitors
cd $HOME/source/applescript
osascript detectmonitor.scpt
# set Terminal settings
# according to https://stackoverflow.com/a/8822669/1497139
# to get this to close your terminal window
exit 0
    
risposta data 22.12.2015 - 18:23
fonte

Leggi altre domande sui tag