Skip to content

Instantly share code, notes, and snippets.

@etonline
etonline / gist:7eaf4ecb8aab385c01e3b30ddbdb521e
Created December 28, 2016 07:37
MacBook 識別電腦螢幕為電視,造成字體鋸齒問題
以前用 MacBook Air mid-2012 透過 mini DisplayPort 接 U2413 都沒什麼問題,沒想到改用 MacBook Retina Pro 13 2016,透過 USB-C Digital AV Multiport Adapter USB-C 多連接埠轉接器,出然顏色跟之前不同就算了,字體鋸齒嚴重...
也不知道為什麼字體平滑沒有出現,但是後來發現 macOS 把這 Dell U2413 螢幕識別成電視,使用 YPbPr 色彩空間,就會造成此問題。
目前 macOS 沒有辦法手動指定色彩空間,似乎只能強制覆寫 EDID 偵測。(或是多買個 USB Type-C Alt Mode to DisplayPort 接螢幕應該也可以解決...)
有人已經寫好 script,執行後會自動抓螢幕的識別碼,做成 macOS 用的描述檔案,在自己把它放到對應資料夾就好。
EDID Patch script:https://gist.github.com/adaugherity/7435890
進去 Recovery Mode 後,複製檔案到複寫描述檔的位置:http://www.mathewinkson.com/2013/03/force-rgb-mode-in-mac-os-x-to-fix-the-picture-quality-of-an-external-monitor/comment-page-13#comment-15886
參考:http://www.mathewinkson.com/2013/03/force-rgb-mode-in-mac-os-x-to-fix-the-picture-quality-of-an-external-monitor
@etonline
etonline / gist:8bcd94b11d2835f05e2a2e443ee3ca55
Last active December 26, 2016 09:11
Apple ssh-add 不再會於啟動時自動讀取所有金鑰
That’s expected. We re-aligned our behavior with the mainstream OpenSSH in this area.
You can fix this pretty easily by running ssh-add -A in your rc script if you want your keys to always be loaded.
要在 bachrc 或是如下面 superuser.com 的文章那樣,用 launchd 跑 ssh-add -A
另外,ssh-add -K 之後不知道要怎麼從 KeyChain 刪除原本輸入過的 Passphrase...
ssh-add -K -d 後,ssh-add -A 又會重新加入,神秘...
雖然說似乎沒有像新聞這樣傳到 iCloud https://news.ycombinator.com/item?id=12653956
在 ssh config 中可以設定要不要加入 KeyChain,但到底哪裡可以刪除...:http://apple.stackexchange.com/a/256866