Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions AppDir/bin/launch-gui.hook
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh

# Launch the GUI when AppImage is double clicked
if [ "${ARG0##*/}" = "${APPIMAGE##*/}" ] && [ -z "$1" ]; then
[ -t 0 ] || set -- --gui
fi
22 changes: 0 additions & 22 deletions AppDir/org.octave.Octave.desktop

This file was deleted.

2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

</div>

### ⚠️ Use `--gui` to start with Qt interface ⚠️

---

AppImage made using [sharun](https://github.com/VHSgunzo/sharun) and its wrapper [quick-sharun](https://github.com/pkgforge-dev/Anylinux-AppImages/blob/main/useful-tools/quick-sharun.sh), which makes it extremely easy to turn any binary into a portable package reliably without using containers or similar tricks.
Expand Down
1 change: 1 addition & 0 deletions make-appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export ARCH VERSION
export OUTPATH=./dist
export ADD_HOOKS="self-updater.bg.hook"
export UPINFO="gh-releases-zsync|${GITHUB_REPOSITORY%/*}|${GITHUB_REPOSITORY#*/}|latest|*$ARCH.AppImage.zsync"
export DESKTOP=/usr/share/applications/org.octave.Octave.desktop
export ICON=/usr/share/icons/hicolor/256x256/apps/octave.png
export DEPLOY_QT=1
export QT_DIR=qt6
Expand Down