mac解决gitk模糊的问题

首先关闭mac的rootless
重启mac 开启前按住command + R
进入recovery模式后,打开终端,关闭rootless功能

csrutil disable

重启mac
打开终端

sudo vim /System/Library/Frameworks/Tk.framework/Versions/Current/Resources/Wish.app/Contents/Info.plist

这里注意要加sudo 不然文件不可写入。
把下面的代码插入plist

NSHighResolutionCapable
    

这里注意plist里面全是标签,代码一定要插入在
标签里面,否则不生效。

现在可以使用高分辨率的gitk了

还有一点,设置完成以后最好要重新开启rootless.

开启rootless

csrutil enable

附录 :mac rootless的介绍 https://developer.apple.com/library/archive/documentation/Security/Conceptual/System_Integrity_Protection_Guide/Introduction/Introduction.html#//apple_ref/doc/uid/TP40016462-CH1-DontLinkElementID_15](https://developer.apple.com/library/archive/documentation/Security/Conceptual/System_Integrity_Protection_Guide/Introduction/Introduction.html#//apple_ref/doc/uid/TP40016462-CH1-DontLinkElementID_15)

你可能感兴趣的:(mac解决gitk模糊的问题)