web-dev-qa-db-ja.com

Ubuntu 14.04でパネルを編集する方法

パネルからメールアイコンを削除したいのですが、可能ですか?私はいくつかの解決策を見つけようとしましたが、すべてはUbuntuの古いバージョン用でした。

enter image description here

3
mr_azad

/ etc/xdg/autostartには、すべてのインジケーターの.desktopファイルが表示されるはずです。その名前は「indicator」で始まります。 Bluetoothインジケーターの例(indicator-bluetooth.desktop)は次のとおりです。

[Desktop Entry]
Type=Application
Name=Indicator Bluetooth
Exec=/usr/lib/x86_64-linux-gnu/indicator-bluetooth/indicator-bluetooth-service
NoDisplay=true
StartupNotify=false
Terminal=false
X-Ubuntu-Gettext-Domain=indicator-bluetooth

削除するインジケーターに対応する.desktopファイルを開き、「NoDisplay」行を見つけて値をtrueに変更します(私のBluetoothの例のように)。行がまだ存在しない場合は、追加できます。

2
Tobias