Add files script
This commit is contained in:
parent
6d0f282cca
commit
8ebf11f8bf
2 changed files with 24 additions and 0 deletions
23
scripts/appscripts/sxmo_files.sh
Executable file
23
scripts/appscripts/sxmo_files.sh
Executable file
|
@ -0,0 +1,23 @@
|
|||
#!/usr/bin/env sh
|
||||
EDITOR=vis
|
||||
cd /home/$USER/
|
||||
|
||||
handlefiles() {
|
||||
echo "$1" | grep -iE ".(wav|webm|mp4|ogg|opus|m4a|flac|mov|avi)$" && st -e mpv "$@" && exit
|
||||
echo "$1" | grep -iE ".(jpg|png|gif)$" && st -e sxiv "$@" && exit
|
||||
st -e sh -ic "$EDITOR "$@"" && exit
|
||||
}
|
||||
|
||||
while true; do
|
||||
CHOICES="$(echo -e 'Close Menu\n../\n*\n'"$(ls -1p)")"
|
||||
DIR="$(basename "$(pwd)")"
|
||||
PICKED="$(
|
||||
echo "$CHOICES" |
|
||||
dmenu -fn Terminus-18 -c -p "$DIR" -l 20
|
||||
)"
|
||||
|
||||
echo "$PICKED" | grep "Close Menu" && exit 0
|
||||
[ -d "$PICKED" ] && cd "$PICKED" && continue
|
||||
echo "$PICKED" | grep -E '^[*]$' && handlefiles *
|
||||
[ -f "$PICKED" ] && handlefiles "$PICKED"
|
||||
done
|
|
@ -35,6 +35,7 @@ programchoicesinit() {
|
|||
# Scripts menu
|
||||
echo $WMCLASS | grep -i "scripts" && CHOICES="$(echo "
|
||||
Web Search ^ 0 ^ sxmo_websearch.sh
|
||||
Files ^ 0 ^ sxmo_files.sh
|
||||
Timer ^ 0 ^ sxmo_timer.sh
|
||||
Youtube ^ 0 ^ sxmo_youtube.sh video
|
||||
Youtube (Audio) ^ 0 ^ sxmo_youtube.sh audio
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue