Notifcação do painel - como posso atualizar gsettings para adicionar 'skype'

0
gsettings get com.canonical.Unity.Panel systray-whitelist

mostra

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

Como posso fazer isso ser

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

Eu tentei usar gsettings get com.canonical.Unity.Panel systray-whitelist ['JavaEmbeddedFrame', 'Mumble', 'Wine', 'Skype', 'hp-systray', 'scp-dbus-service']

mas parece que tenho um pior e não foi alterado: -

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
    
por Michael Durrant 18.05.2012 / 04:30

1 resposta

1

Use

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

Dê uma olhada em Unsettings se quiser usar uma GUI para isso.

    
por Florian Diesch 18.05.2012 / 04:48