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
我什么也没看见
答案1
第一个,您需要将其替换[other snap]
为另一个 snap 的实际名称,例如示例中通过 snap 安装的 GTK 应用程序。另外,您将冒号打成了分号。因此,它应该是:
sudo snap connect leafpad:gtk-3-themes chromeos-themes:gtk-3-themes
另外,对于该for
行,我认为您不会看到任何输出。它只是工作了一会儿然后就完成了。