these should follow the cli changes

This commit is contained in:
Robin Olsen
2026-03-16 13:32:33 +01:00
parent 9a70851a0a
commit e6da75bd35
2 changed files with 4 additions and 4 deletions

View File

@@ -9,9 +9,9 @@ cat <<EOF > /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;

View File

@@ -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 {