sudo snap connect [other snap];gtk-3-themes chromeos-themes:gtk-3-themes
error: snap "snap]" is not installed
gtk-3-themes: command not found当我进入这个
for i in $(snap connections | grep gtk-common-themes:gtk-3-themes | awk '{print $2}'); do sudo snap connect $i chromeos-themes:gtk-3-themes; done我什么也没看见
发布于 2023-02-10 09:24:02
第一个问题是,您需要用另一个[other snap]的实际名称替换GTK,例如示例中通过snap安装的GTK应用程序。还有,你把一个冒号输入分号。所以应该是:
sudo snap connect leafpad:gtk-3-themes chromeos-themes:gtk-3-themes另外,对于for行,我认为您不会看到任何输出。它只是工作了一段时间,然后结束。
https://askubuntu.com/questions/1454334
复制相似问题