fix: Applications.App.executable not returning full exec string

This commit is contained in:
Aylur
2023-11-02 00:51:10 +01:00
parent 0a348946e7
commit 10e95d70a4
+1 -1
View File
@@ -34,7 +34,7 @@ class Application extends Service {
get desktop() { return this._app.get_id(); }
get description() { return this._app.get_description(); }
get wm_class() { return this._app.get_startup_wm_class(); }
get executable() { return this._app.get_executable(); }
get executable() { return this._app.get_string('Exec') || this._app.get_executable(); }
get icon_name() { return this._app.get_string('Icon'); }
constructor(app: Gio.DesktopAppInfo, frequency?: number) {