2010年8月19日 星期四

更新syntaxhighlighter到3.0.83

基於很久沒有更新,順手直接把server上2.x版的換掉,目前看來都是好的!

Great!!
如此順利真好!

2010年8月7日 星期六

Mac上自製靜音按鈕

系統預設裡面找不到靜音的熱鍵,只好自製

功能很簡單,若已經是靜音的狀態再執行一次就會回復
tell application "System Events"
if (output muted of (get volume settings)) is true then
set volume without output muted
else
set volume with output muted
end if
end tell
view raw mute.scpt hosted with ❤ by GitHub