From f7e84bed70d4278da97b21f5b1c4d7bba105ef09 Mon Sep 17 00:00:00 2001 From: Luuk van Baal Date: Sat, 15 May 2021 22:24:40 +0200 Subject: [PATCH] Wait until cmus is ready and fix fzplug preview command --- plugins/cmusq | 2 +- plugins/fzplug | 18 ++++++------------ 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/plugins/cmusq b/plugins/cmusq index aa67cb66..1b30059d 100755 --- a/plugins/cmusq +++ b/plugins/cmusq @@ -40,7 +40,7 @@ start_cmus() { nohup "$TERMINAL" -e cmus & ;; esac # Give the new terminal some time to open - until pidof cmus >/dev/null; do sleep 0.1; done + until cmus-remote -C; do sleep 0.1; done [ -n "$nnnwindow" ] && xdotool windowactivate "$nnnwindow" } >/dev/null 2>&1 diff --git a/plugins/fzplug b/plugins/fzplug index 6fcff416..11dcf7fc 100755 --- a/plugins/fzplug +++ b/plugins/fzplug @@ -31,20 +31,14 @@ nnnpluginsdir="$HOME/.config/nnn/plugins" # Preview with bat if installed if type bat >/dev/null; then - plugin=$(find "$nnnpluginsdir" "$CUSTOMDIR1" "$CUSTOMDIR2" \ - -maxdepth 3 -perm -111 -type f 2>/dev/null | fzf --ansi --preview \ - "cat {}" \ - --preview-window right:66%:wrap --delimiter / --with-nth -1 \ - --bind="?:toggle-preview") -else - plugin=$(find "$nnnpluginsdir" "$CUSTOMDIR1" "$CUSTOMDIR2" \ - -maxdepth 3 -perm -111 -type f 2>/dev/null | fzf --ansi --preview \ - "bat --terminal-width='$(tput cols)' --decorations=always --color=always \ - --style='${BAT_STYLE:-header,numbers}' {}" \ - --preview-window right:66% --delimiter / --with-nth -1 \ - --bind="?:toggle-preview") + BAT="bat --terminal-width='$(tput cols)' --decorations=always --color=always --style='${BAT_STYLE:-header,numbers}'" fi +plugin=$(find "$nnnpluginsdir" "$CUSTOMDIR1" "$CUSTOMDIR2" \ +-maxdepth 3 -perm -111 -type f 2>/dev/null | fzf --ansi --preview \ + "${BAT:-cat} {}" --preview-window="right:66%:wrap" --delimiter / \ + --with-nth -1 --bind="?:toggle-preview") + # Try running the script on the hovered file, and abort # abort if no plugin was selected (ESC or ^C pressed). err=0