fix: tab bars no longer shown in overview. Tab bars show name of app with pipe and then title of the app

This commit is contained in:
Lucas Oskorep
2026-02-26 21:21:29 -05:00
parent 0cc35c95b4
commit e023faaedb
7 changed files with 48 additions and 9 deletions

View File

@@ -19,10 +19,15 @@ export default class aerospike extends Extension {
}
enable() {
Logger.log("STARTING AEROSPIKE!")
this.bindSettings();
this.setupKeybindings();
this.windowManager.enable()
try {
Logger.log("STARTING AEROSPIKE!")
this.bindSettings();
this.setupKeybindings();
this.windowManager.enable()
Logger.log("AEROSPIKE ENABLED SUCCESSFULLY")
} catch (e) {
Logger.error("AEROSPIKE ENABLE FAILED", e);
}
}
disable() {