blob: a959d460e5553890d277fb727d9acbf4e9255a4b (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
dest="$XDG_DATA_HOME"/appimages
appimage="$(find "$dest" -type f -printf "%f\n" |
sed 's/\.[Aa]pp[Ii]mage$//g' |
commander -x -l -p "Appimage:")"
[ "$appimage" ] || exit 1
setsid "$dest/${appimage:-NOSEL}"*
|