在终端中更改 VLC 界面样式

在终端中更改 VLC 界面样式

我搜索了vlcdocs(vlc -H --advanced --help-verbose)但找不到这样做的方法。 难道不能在终端中将界面样式更改为深色吗?

在此处输入图片描述

附加问题:如何禁用自动图标更改?

在此处输入图片描述

答案1

按照@mpy 评论中的建议,就可以完成这项工作:

# Ensure the settings file exists (not created on install but on launch)
# by calling vlc with an invalid value for the interface option.
# Does nothing except create and populate the file
# ~/Library/Preferences/org.videolan.vlc/vlcrc
vlc -I none

# Enable dark mode.
sed -i '' -E 's/#?macosx-interfacestyle=0/macosx-interfacestyle=1/' ~/Library/Preferences/org.videolan.vlc/vlcrc
# Disable icon changes (e.g. Christmas icon)
sed -i '' -E 's/#?macosx-icon-change=1/macosx-icon-change=0/' ~/Library/Preferences/org.videolan.vlc/vlcrc

相关内容