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
8 changes: 8 additions & 0 deletions AppDir/bin/select-file.src.hook
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/false

if [ -z "$1" ]; then
f=$(zenity --text 'Select file to open' --file-selection \
--file-filter='Images (jpg, png, svg, gif) | *.jpg *.JPG *.png *.PNG *svg *SVG *.gif *.GIF'
)
set -- --filename "$f"
fi
2 changes: 1 addition & 1 deletion get-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ echo "---------------------------------------------------------------"
get-debloated-pkgs --add-common --prefer-nano

# Comment this out if you need an AUR package
#make-aur-package PACKAGENAME
make-aur-package zenity-rs-bin

# If the application needs to be manually built that has to be done down here

Expand Down
2 changes: 1 addition & 1 deletion make-appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export ICON=/usr/share/icons/hicolor/scalable/apps/satty.svg
export DESKTOP=/usr/share/applications/satty.desktop

# Deploy dependencies
quick-sharun /usr/bin/satty
quick-sharun /usr/bin/satty /usr/bin/zenity

# Additional changes can be done in between here

Expand Down