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.
gnome-shell-extensions/SOURCES/0001-dash-to-panel-Removing...

49 lines
1.3 KiB

From 0b1c0f682519cc0bd899b121a340728e8631e39c Mon Sep 17 00:00:00 2001
From: Alexey Lyubimov <a.lyubimov@softline.com>
Date: Thu, 22 Feb 2024 11:09:13 +0300
Subject: [PATCH 1/2] dash to panel Removing items from apps menu
---
extensions/dash-to-panel/appIcons.js | 25 -------------------------
1 file changed, 25 deletions(-)
diff --git a/extensions/dash-to-panel/appIcons.js b/extensions/dash-to-panel/appIcons.js
index 5cfb135..9029866 100644
--- a/extensions/dash-to-panel/appIcons.js
+++ b/extensions/dash-to-panel/appIcons.js
@@ -1889,31 +1889,6 @@ 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']
- });
-
- _appendItem(this, {
- title: 'Extensions',
- cmd: ['gnome-shell-extension-prefs']
- });
-
- _appendItem(this, {
- title: 'Settings',
- cmd: ['gnome-control-center', 'wifi']
- });
-
_appendList(
this,
Me.settings.get_strv('panel-context-menu-commands'),
--
2.39.3