This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
以前用 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |