This commit is contained in:
2023-05-15 00:23:01 +09:00
parent f2e2952d1d
commit c8b260fac9
4 changed files with 147 additions and 57 deletions
+2 -1
View File
@@ -11,7 +11,8 @@ const Indicator = Me.imports.sources.indicator;
class Extension {
constructor() {
this._state = new State.StateManager();
this._renderer = new Renderer.Renderer(this._state);
this._settings = ExtensionUtils.getSettings("org.gnome.shell.extensions.fairy");
this._renderer = new Renderer.Renderer(this._state, this._settings);
this._keybinds = new Keybinds.KeyboardManager(this._state, this._renderer);
this._indicator = new Indicator.Indicator(this._state, this._renderer);
}