You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.7 KiB
61 lines
1.7 KiB
1 year ago
|
From bc61be528d76851dc345e0cb725b43652e59ac24 Mon Sep 17 00:00:00 2001
|
||
1 year ago
|
From: tigro <arkadiy.sheyn@softline.com>
|
||
|
Date: Wed, 11 Oct 2023 22:57:16 +0300
|
||
1 year ago
|
Subject: [PATCH 3/3] Drop some items from panel menu
|
||
1 year ago
|
|
||
|
---
|
||
|
appIcons.js | 6 ++++++
|
||
1 year ago
|
1 file changed, 6 insertions(+)
|
||
1 year ago
|
|
||
|
diff --git a/appIcons.js b/appIcons.js
|
||
|
index e79eae8..f6b9563 100644
|
||
|
--- a/appIcons.js
|
||
|
+++ b/appIcons.js
|
||
|
@@ -1889,16 +1889,19 @@ var MyShowAppsIconMenu = Utils.defineClass({
|
||
|
this._appendSeparator();
|
||
|
}
|
||
|
|
||
|
+ /*
|
||
|
_appendItem(this, {
|
||
|
title: 'Terminal',
|
||
|
cmd: ['gnome-terminal']
|
||
|
});
|
||
|
+ */
|
||
|
|
||
|
_appendItem(this, {
|
||
|
title: 'System monitor',
|
||
|
cmd: ['gnome-system-monitor']
|
||
|
});
|
||
|
|
||
|
+ /*
|
||
|
_appendItem(this, {
|
||
|
title: 'Files',
|
||
|
cmd: ['nautilus']
|
||
|
@@ -1913,6 +1916,7 @@ var MyShowAppsIconMenu = Utils.defineClass({
|
||
|
title: 'Settings',
|
||
|
cmd: ['gnome-control-center', 'wifi']
|
||
|
});
|
||
|
+ */
|
||
|
|
||
|
_appendList(
|
||
|
this,
|
||
|
@@ -1927,6 +1931,7 @@ var MyShowAppsIconMenu = Utils.defineClass({
|
||
|
Me.settings.set_boolean('taskbar-locked', !Me.settings.get_boolean('taskbar-locked'));
|
||
|
});
|
||
|
|
||
|
+ /*
|
||
|
let settingsMenuItem = this._appendMenuItem(_('Dash to Panel Settings'));
|
||
|
settingsMenuItem.connect('activate', function () {
|
||
|
let command = ["gnome-shell-extension-prefs"];
|
||
|
@@ -1937,6 +1942,7 @@ var MyShowAppsIconMenu = Utils.defineClass({
|
||
|
|
||
|
Util.spawn(command.concat([Me.metadata.uuid]));
|
||
|
});
|
||
|
+ */
|
||
|
|
||
|
if(this._source._dtpPanel) {
|
||
|
this._appendSeparator();
|
||
|
--
|
||
|
2.41.0
|
||
|
|