面板通知 - 如何更新 gsettings 以添加“skype”

面板通知 - 如何更新 gsettings 以添加“skype”
gsettings get com.canonical.Unity.Panel systray-whitelist

节目

['JavaEmbeddedFrame', 'Mumble', 'Wine', 'hp-systray', 'scp-dbus-service']

我怎样才能做到

['JavaEmbeddedFrame', 'Mumble', 'Wine', 'Skype', 'hp-systray', 'scp-dbus-service']

我试过
gsettings get com.canonical.Unity.Panel systray-whitelist ['JavaEmbeddedFrame', 'Mumble', 'Wine', 'Skype', 'hp-systray', 'scp-dbus-service']

但我似乎收到一个错误,并且它没有改变:-

Usage:
  gsettings set SCHEMA[:PATH] KEY VALUE

Set the value of KEY to VALUE

Arguments:
  SCHEMA    The name of the schema
  PATH      The path, for relocatable schemas
  KEY       The key within the schema
  VALUE     The value to set

答案1

使用

gsettings set com.canonical.Unity.Panel systray-whitelist "['JavaEmbeddedFrame', 'Mumble', 'Wine', 'Skype', 'hp-systray', 'scp-dbus-service']"

看一下取消设置如果您想为此使用 GUI。

相关内容