AppImage / type2-runtime

The runtime is the executable part of every AppImage. It mounts the payload via FUSE and executes the entrypoint.
Other
22 stars 17 forks source link

--appimage-help exceeds 80 characters #66

Open probonopd opened 3 months ago

probonopd commented 3 months ago

image

--appimage-extract text is too long, does not fit into the standard window width of many terminals

TheAssassin commented 3 months ago

A fancier solution would involve reading the terminal's width and formatting the strings accordingly. But that would be overkill.

andy5995 commented 1 month ago

What about something like this:

            "AppImage options:\n\n"
            "  --appimage-extract [<pattern>]\n"
            "           Extract content from embedded filesystem image\n"
            "           If pattern is passed, only extract matching files\n"
            "  --appimage-help                 Print this help\n"
            "  --appimage-mount                \n"
            "           Mount embedded filesystem image and print\n"
            "           mount point and wait for kill with Ctrl-C\n"
            "  --appimage-offset               Print byte offset to start of embedded\n"
            "                                  filesystem image\n"