Skip to content

Commit daaf6e3

Browse files
committed
fix: appimage desktop should run on terminal + fix icon
1 parent 08daacc commit daaf6e3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

scripts/appimage.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ cat > "$APPDIR/lisp-inference.desktop" <<EOL
2626
[Desktop Entry]
2727
Name=lisp-inference
2828
Exec=AppRun
29-
Icon=lisp-inference
29+
Icon=computer-symbolic
30+
Terminal=true
3031
Type=Application
3132
Categories=Utility;
3233
EOL
@@ -40,8 +41,8 @@ EOL
4041
chmod +x "$APPDIR/AppRun"
4142

4243
# Copy the binary and icon
43-
cp ./lisp-inference "$APPDIR/usr/bin/"
44-
cp ./lisp-inference.png "$APPDIR/lisp-inference.png"
44+
cp -v ./lisp-inference "$APPDIR/usr/bin/"
45+
cp -v /usr/share/icons/Adwaita/scalable/devices/computer-symbolic.svg "$APPDIR/"
4546

4647
# Run appimagetool
4748
"$APPIMAGE_TOOL_PATH" "$APPDIR"

0 commit comments

Comments
 (0)