diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-25 21:42:10 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-25 21:42:10 +1100 |
| commit | 797756c6609c06e959ad691bc57b0e301e07cc11 (patch) | |
| tree | 1ec567ca007759098554f6bb7e9b6fb2fa675be3 /src/modules | |
| parent | launcher: todo subcommand (diff) | |
| download | caelestia-shell-797756c6609c06e959ad691bc57b0e301e07cc11.tar.gz caelestia-shell-797756c6609c06e959ad691bc57b0e301e07cc11.tar.bz2 caelestia-shell-797756c6609c06e959ad691bc57b0e301e07cc11.zip | |
launcher: todo notif uwsm app
Wasn't using it cause todoist desktop is broken with uwsm
But command works so use that
Also better app launch
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/launcher.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/launcher.tsx b/src/modules/launcher.tsx index e3d3463..aeb7156 100644 --- a/src/modules/launcher.tsx +++ b/src/modules/launcher.tsx @@ -527,7 +527,7 @@ const Results = ({ entry, mode }: { entry: Widget.Entry; mode: Variable<Mode> }) c => c.class === "Todoist" ); if (client) client.focus(); - else Gio.DesktopAppInfo.new("todoist.desktop")?.launch([], null); + else execAsync("uwsm app -- todoist").catch(console.error); }, }, }); |