You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The project is a GtkApplication, which generates some of the --help out itself. When I call the AppImage with the option --help, the relevant part of the output shows:
Usage: AppRun.wrapped [OPTION…] [path...]
I assume this is coming from argv[0].
Is it possible for the scripts to be changed to show the ultimate executable?
The text was updated successfully, but these errors were encountered:
From $HOME/bin running: ./Geeqie-latest-x86_64.AppImage --help
or ./Geeqie-latest-x86_64-AppImage/squashfs-root/AppRun --help
gives the same output as above.
ls -l Geeqie-latest-x86_64-AppImage/squashfs-root/AppRun.wrapped
gives: lrwxrwxrwx 1 cclark cclark 14 Jan 2 10:12 Geeqie-latest-x86_64-AppImage/squashfs-root/AppRun.wrapped -> usr/bin/geeqie
This hack works for me - in ./Geeqie-latest-x86_64-AppImage/squashfs-root/AppRun replacing exec "$this_dir"/AppRun.wrapped "$@"
with dest=$(readlink -f $this_dir/AppRun.wrapped) exec "$dest" "$@"
gives the --help output Usage: geeqie [OPTION…] [path...]
mowgli
pushed a commit
to BestImageViewer/geeqie
that referenced
this issue
Jan 10, 2025
I am using an AppImage from the Geeqie project, created using linuxdeploy and the gtk plugin:
https://github.com/BestImageViewer/geeqie
The project is a GtkApplication, which generates some of the --help out itself. When I call the AppImage with the option
--help
, the relevant part of the output shows:Usage:
AppRun.wrapped [OPTION…] [path...]
I assume this is coming from
argv[0]
.Is it possible for the scripts to be changed to show the ultimate executable?
The text was updated successfully, but these errors were encountered: