This commit is contained in:
#root_informatica 2023-09-11 00:06:40 -03:00
parent 837f1ad27f
commit a02858668c
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
PD="$HOME/Descargas/ytdl" # podcast dir
LP="/tmp/lastpodcast.ogg" # last podcast (in case of fire)
TARGET=$(find $PD -type f | grep .ogg | fzfmenu.sh) # give the target file
TARGET=$(find $PD -type f | grep .ogg | fzy) # give the target file
if [ -n "$TARGET" ]; then # if target
mpv "$TARGET" # play it

View File

@ -3,4 +3,4 @@
TERMINAL=xterm
GEOMETRY=66x11+314+250
$TERMINAL -name 'xlauncher' -g $GEOMETRY -e bash -c 'cmd=$(compgen -c | sort -u | grep -v fzy | fzy); setsid -f $cmd'
$TERMINAL -name 'xlauncher' -g $GEOMETRY -e bash -c 'cmd=$(compgen -c | sort -u | grep -v fzf | fzf --no-sort --print-query | tail -n 1); setsid -f $cmd'

View File

@ -3,5 +3,5 @@
TERMINAL=xterm
GEOMETRY=66x11+314+250
$TERMINAL -name "xmenu" -g $GEOMETRY -e "fzy $* < /proc/$$/fd/0 > /proc/$$/fd/1"
$TERMINAL -name "xmenu" -g $GEOMETRY -e "fzf --no-sort -m $* < /proc/$$/fd/0 > /proc/$$/fd/1"