ytfzf
ytfzf copied to clipboard
ytfzf search crashes my terminal
I'm on arch Linux and i have all dependencies installed ueberzug fzf youtube-dl mpv jq
every time i try to search my terminal crashes, any ideas what might be causing this issue ?
Should not every time, but you should expect crashing from search. I figured out, if it tries to show long results more than the fzf supports, it crashes.
Using ytfzf with --ext-menu, -D should solve that. You can change --ext-menu variable by like that:
export YTFZF_EXTMENU="dmenu -l 30"
If you want to keep it permanent:
echo 'export YTFZF_EXTMENU="dmenu -l 30"' >> /etc/environment
It is a temporary solution until fzf fixes it up.
export YTFZF_EXTMENU="dmenu -l 30"
This has been changed to a function so, you can add this to ~/.config/ytfzf/conf.sh
instead of that variable.
external_menu () {
dmenu -l 30
}
If you're using st it might be because it's trying to display non-ascii characters
If you're using st it might be because it's trying to display non-ascii characters
I am using st, and my terminal crashes very often
you should try using a different terminal, or patching st to have unicode support.
If youve alreasy patched st I would just try a different terminal
Yeah, ytfzf didn't worked in kitty, while it worked flawlessly in GNOME terminal. Thanks @Euro20179 :)