dotfiles-old/.local/scripts/appimages.sh

15 lines
178 B
Bash
Raw Normal View History

2022-03-10 03:42:22 +00:00
#!/usr/bin/env sh
AIDIR="$HOME/.local/appimages"
if [ $1 ]; then
AIDIR="$1"
fi
sel=$(ls "$AIDIR" | dmenu -l 5 -p "select AppImage")
if [ $sel ]; then
sh -c $AIDIR/$sel
fi