Skip to content

Commit 01e49f8

Browse files
committed
fix broken autostart
1 parent 8ab5e7c commit 01e49f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Application.vala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,17 +175,17 @@ namespace Reminduck {
175175
private static void request_autostart () {
176176
Xdp.Portal portal = new Xdp.Portal ();
177177
GenericArray<weak string> cmd = new GenericArray<weak string> ();
178-
cmd.add ("com.github.elfenware.badger");
178+
cmd.add ("com.github.elfenware.reminduck");
179179
cmd.add ("--headless");
180180

181181
portal.request_background.begin (
182182
null,
183-
_("Autostart Badger in background to send reminders"),
183+
_("Autostart Reminduck in background to send reminders"),
184184
cmd,
185185
Xdp.BackgroundFlags.AUTOSTART,
186186
null);
187187

188-
stdout.printf ("\n🚀 Requested autostart for Badger");
188+
stdout.printf ("\n🚀 Requested autostart");
189189
}
190190

191191
public static void reload_reminders () {

0 commit comments

Comments
 (0)