답변:
내가 아는 한, 해당 옵션을 활성화하지 않으면이 경고를 복제 할 수 없습니다. 이 옵션을 활성화하면 다음을 사용하여 터미널에서 플래시가 발생할 수 있습니다.
osascript -e "beep"
그러나 해당 옵션을 사용하지 않으려면 반전 색상을 사용할 수 있습니다. 색상 반전 접근성 옵션을 두 번 사용하면 화면이 깜박이므로 키보드 단축키 ⌃⌥⌘8을 두 번 누르면 플래시가 발생합니다.
#!/usr/bin/osascript
tell application "System Events" to repeat 2 times
key code 28 using {command down, control down, option down}
delay 0
end repeat
다른 사람들을 위해, 내가 찾은 대안 중 하나는 homebrew를 통해 사용 가능한 밝기 명령 줄 도구 를 사용하는 것입니다 ( http://brew.sh 에서 설치 방법에 대한 지침을 찾을 수 있습니다 ). 토론 링크 : https://apple.stackexchange.com/a/127258/23876
첫 번째 줄은 밝기를 설치하고 두 번째 줄은 실제로 어떤 밝기가 나타나는지 보여줍니다.
brew install brightness
brightness 0; sleep 1; brightness 1
그래도 메인 디스플레이에서만 작동합니다. 이 형태의 밝기 전환이 너무 느리면 수면 0.3 또는 수면 0.1로 실험하십시오.
이것은 applescript를 통해 Sierra에서 작동합니다.
tell application "System Preferences"
run
reveal anchor "Hearing" of pane id "com.apple.preference.universalaccess"
end tell
tell application "System Events" to tell process "System Preferences" to click button "Test Screen Flash" of window "Accessibility" of application process "System Preferences" of application "System Events"
이것은 이것을하기 위해 applescript를 호출하는 쉘 스크립트입니다 (코드에 대한 자세한 설명이 필요합니다)
#!/usr/bin/osascript
tell application "System Events" to repeat 2 times
key code 28 using {command down, control down, option down}
delay 0
end repeat