답변:
Sizzling Keys 의 프로 버전을 구입할 수 있습니다 . 그것은이다 preference pane
다른 많은 것들 사이에서, 시스템 볼륨을 수정하기위한 사용자 정의 키보드 단축키를 정의 할 수있다.
또는 AppleScript를 사용하여 시스템 볼륨을 수정할 수 있습니다.
AppleScript 편집기를 열고 입력하십시오
set volume output volume 100
볼륨의 크기는 0 ~ 100입니다. 절대 값 (예 : 전체 볼륨의 경우 100)을 설정하거나 다음과 같이 증가 / 감소하는 스크립트를 만들 수 있습니다.
set vol to output volume of (get volume settings)
if vol > 90 then # 100 max
set volume output volume 100
else
set volume output volume (vol + 10)
end if
볼륨 작게 :
set vol to output volume of (get volume settings)
if vol < 10 then # 0 is min
set volume output volume 0
else
set volume output volume (vol - 10)
end if
볼륨을 변경할 때 일반적으로 발생하는 피드백 사운드를 복제하려면 스크립트에 다음을 추가 할 수 있습니다.
do shell script "afplay /System/Library/Sounds/Pop.aiff"
스크립트를 응용 프로그램으로 저장하거나 Automator를 입력없는 서비스로 사용하여 서비스 메뉴에 스크립트를 통합 할 수 있습니다 . 시스템 환경 설정»키보드»키보드 단축키»서비스 에서 서비스에 대한 키보드 단축키를 정의 할 수 있습니다.
Full Keyboard Access
로All controls
Karabiner (이전의 KeyRemap4MacBook)는 기능 키를 다시 매핑하여 볼륨을 제어 할 수 있으며 지금까지 완벽하게 작동했습니다. 제어판에서 "F9 to mute"등을 검색하십시오.
Lion의 모든 키보드에서 시스템 및 iTunes 볼륨을 제어하고 재생 / 일시 정지 및 다음 / 이전을 제어 할 수있는 일련의 AppleScript 서비스 및 지침을 패키지했습니다.
http://gskinner.com/blog/archives/2011/10/media-keys-in-osx-for-any-keyboard.html
오래된 스레드이지만 해결 방법은 다른 답변을 기반으로 한 줄의 Applescript를 사용하는 것입니다.
볼륨 10 % 증가
osascript -e 'set volume output volume ((output volume of (get volume settings)) + 10)'
볼륨을 10 % 줄입니다
osascript -e 'set volume output volume ((output volume of (get volume settings)) - 10)'
실제로 Alfred 앱에서 블로그 게시물을 사용하는 방법에 대한 블로그 게시물을 작성했습니다. http://arif.im/system-volume-control-using-alfred/
PC 키보드의 F1 ~ F12 키는 동일한 기능을 수행해야합니다. ⌘ 키 대신 "Windows"키를 대체하는 데 아무런 문제가 없다고 가정합니다 . F1 ~ F12 키가 작동하지 않으면 시스템 환경 설정, 키보드 및 마우스, 키보드로 이동하여 F 키를 직접 사용할지 또는 fn 키 한정자를 사용할지 여부를 선택하십시오. 폴 감사합니다
다음은 볼륨 높이기, 내리기 및 음소거 단축키에 대한 완벽한 솔루션입니다. Spark 응용 프로그램을 사용하여 키 조합을 이러한 스크립트에 바인딩합니다 ( http://www.macupdate.com/app/mac/14352/spark ). 스크립트는 현재 음소거 상태를 확인하고 처리하므로 제대로 제어하지 않으면 발생할 수있는 이상한 문제를 피할 수 있습니다.
볼륨 업:
set vol to output muted of (get volume settings)
if (vol = true) then
set volume without output muted
end if
set vol to output volume of (get volume settings)
if vol > 95 then
set volume output volume 100
else
set volume output volume (vol + 5)
end if
do shell script "afplay /System/Library/Sounds/Pop.aiff"
볼륨 작게 :
set vol to output muted of (get volume settings)
if (vol = true) then
error number -128
else
set vol to output volume of (get volume settings)
if vol < 5 then # 0 is min
set volume with output muted
else
set volume output volume (vol - 5)
end if
do shell script "afplay /System/Library/Sounds/Pop.aiff"
end if
음소거 / 음소거 해제 :
set vol to output muted of (get volume settings)
if (vol = true) then
set volume without output muted
else
set volume with output muted
end if