diff options
-rw-r--r-- | gjs/src/application.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gjs/src/application.ts b/gjs/src/application.ts index 4150937..7147856 100644 --- a/gjs/src/application.ts +++ b/gjs/src/application.ts @@ -53,6 +53,10 @@ class AstalJS extends Astal.Application { } } + apply_css(style: string, reset = false) { + super.apply_css(style, reset) + } + start({ requestHandler, css, hold, main, client, ...cfg }: Config = {}) { client ??= () => { print(`Astal instance "${this.instanceName}" already running`) |