1diff --git a/src/welcome.js b/src/welcome.js
2index 27cc7dc..c6772c3 100644
3--- a/src/welcome.js
4+++ b/src/welcome.js
5@@ -55,24 +55,7 @@ export default function Welcome({ application }) {
6 }
7
8 function getCommand() {
9- const FLATPAK_ID = GLib.getenv("FLATPAK_ID");
10-
11- if (FLATPAK_ID) {
12- return `flatpak run ${FLATPAK_ID}`;
13- }
14-
15- const { programInvocationName } = system;
16- // re.sonny.Commit
17- if (programInvocationName === GLib.path_get_basename(programInvocationName)) {
18- return programInvocationName;
19- }
20-
21- // ./re.sonny.commit
22- // /home/sonny/re.sonny.Commit
23- return GLib.canonicalize_filename(
24- programInvocationName,
25- GLib.get_current_dir(),
26- );
27+ return "re.sonny.Commit";
28 }
29
30 function getRange(key) {