Moving current extensions to subdirectory for GNOME 44 as GNOME Shell 45 is backwards incompatible (see Debian #1052112).
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
b42bc882b7
commit
c2040beebc
138 changed files with 4 additions and 1 deletions
|
@ -0,0 +1,21 @@
|
|||
'use strict'
|
||||
|
||||
const WorkspaceSwitcherPopup = imports.ui.workspaceSwitcherPopup.WorkspaceSwitcherPopup;
|
||||
|
||||
class Extension {
|
||||
constructor() {
|
||||
this.originalWorkspaceSwitcherPopup_display = WorkspaceSwitcherPopup.prototype.display;
|
||||
}
|
||||
|
||||
enable() {
|
||||
WorkspaceSwitcherPopup.prototype.display = () => {};
|
||||
}
|
||||
|
||||
disable() {
|
||||
WorkspaceSwitcherPopup.prototype.display = this.originalWorkspaceSwitcherPopup_display;
|
||||
}
|
||||
}
|
||||
|
||||
function init() {
|
||||
return new Extension();
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"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": [
|
||||
"42",
|
||||
"43",
|
||||
"44"
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue