Renaming extensions subdirectory for GNOME 48.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
8ed6608e27
commit
d13dfd08e5
189 changed files with 1 additions and 1 deletions
|
@ -0,0 +1,14 @@
|
|||
import { Extension } from 'resource:///org/gnome/shell/extensions/extension.js';
|
||||
import { WorkspaceSwitcherPopup } from 'resource:///org/gnome/shell/ui/workspaceSwitcherPopup.js';
|
||||
|
||||
export default class extends Extension {
|
||||
enable() {
|
||||
this._originalWorkspaceSwitcherPopup_display = WorkspaceSwitcherPopup.prototype.display;
|
||||
WorkspaceSwitcherPopup.prototype.display = () => {};
|
||||
}
|
||||
|
||||
disable() {
|
||||
WorkspaceSwitcherPopup.prototype.display = this._originalWorkspaceSwitcherPopup_display;
|
||||
this._originalWorkspaceSwitcherPopup_display = null;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"name": "Disable Workspace Switcher",
|
||||
"description": "Disable the workspace switcher popup.",
|
||||
"version": 1,
|
||||
"uuid": "disable-workspace-switcher@jbradaric.me",
|
||||
"url": "https://github.com/jbradaric/disable-workspace-switcher",
|
||||
"shell-version": [
|
||||
"45", "46", "47", "48"
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue