From e6da75bd3534a27cc65d28c2b3fcccc0863c0202 Mon Sep 17 00:00:00 2001 From: Robin Olsen Date: Mon, 16 Mar 2026 13:32:33 +0100 Subject: [PATCH] these should follow the cli changes --- build/setup-desktop.sh | 6 +++--- pkg/repl/executor.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build/setup-desktop.sh b/build/setup-desktop.sh index 29f7b60..e076b15 100644 --- a/build/setup-desktop.sh +++ b/build/setup-desktop.sh @@ -9,9 +9,9 @@ cat < /config/Desktop/LazyPM.desktop [Desktop Entry] Version=1.0 Type=Application -Name=PM Survey -Comment=Launch the Prompt Manageragment Survey -Exec=/usr/local/bin/pm survey start +Name=Project Management Survey +Comment=Launch the Project Management Survey +Exec=/usr/local/bin/pm start Icon=utilities-terminal Terminal=true Categories=Utility; diff --git a/pkg/repl/executor.go b/pkg/repl/executor.go index 7ad82cc..eac6855 100644 --- a/pkg/repl/executor.go +++ b/pkg/repl/executor.go @@ -22,7 +22,7 @@ func execute(input string) (string, error) { } if input == "status" { - return executePMCommand("survey status") + return executePMCommand("status") } if after, ok := strings.CutPrefix(input, "pm"); ok {