fredericky123
fredericky123
> 隔壁是指jrohy/trojan 仓库? 不支持的 trojan + grpc协议 是的,我看clash支持这个协议,却不知道到哪里找脚本配置 clash 刚刚支持了trojan+websocket,我却在隔壁也没配置好
> 得手动改配置来支持trojan-go + ws 我尝试改etc/trojan下面的配置,好像没用 是我改错位置了么
> 得手动改配置来支持trojan-go + ws 请问能否写个wiki呢 trojan不套个袜子,太容易被识别了,还有未来能支持 trojan + grpc协议不 感恩
> 改的是这个配置文件: /usr/local/etc/trojan/config.json. trojan本身不支持trojan + grpc协议 感谢 那好奇怪哎 这里配置wiki中的tojan+grpc是怎么弄的呢? https://github.com/Dreamacro/clash/wiki/configuration
``` export DYLD_FORCE_FLAT_NAMESPACE=1 export DYLD_INSERT_LIBRARIES=/usr/local/Cellar/libfaketime/HEAD-f50664f/lib/faketime/libfaketime.1.dylib export FAKETIME="2020-01-01 00:00:00" open /usr/local/MyApp/MyApp.app/Contents/MacOS/MyApp ``` By the way, the syntax above can open the software correctly, however, the time in the software didn't change;...
Is that because wrapper set other options? like `FAKETIME_DONT_RESET=1 FAKETIME_NO_CACHE=1` Or because faketime wrapper do the command with opening the app at the same time, while step-by-method is not simutaneous?
Why I want to fix this problem is that I want to change the time when the app start permanently. Right now, using the wrapper way works, however, I need...
By the way, the syntax below work: ``` export DYLD_FORCE_FLAT_NAMESPACE=1 export DYLD_INSERT_LIBRARIES=/usr/local/Cellar/libfaketime/HEAD-f50664f/lib/faketime/libfaketime.1.dylib export FAKETIME="2020-01-01 00:00:00" /Users/home/Applications/date ```
> Then there is no reason why it shouldn't work with arbitrary other applications (unless SIP interferes or those applications fetch their used time differently). I have already disabled SIP,...
I have one guess. Although the syntax mode cannot open the app correctly, but it do innitiate the app. Maybe the app inside double checked the system time after the...