From 887349c1024da5f6e80ed21006643499b5a74278 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 7 Apr 2020 00:12:35 -0700 Subject: [PATCH] Removed mac code --- trash | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/trash b/trash index 94236f5..53c0c57 100755 --- a/trash +++ b/trash @@ -53,10 +53,8 @@ EOU } pick_trashfiles() { - td="$1" - shift - prompt="$1" - shift + td="$1"; shift + prompt="$1"; shift find "$td"/info -mindepth 1 -maxdepth 1 -print0 | \ fzf -1 --read0 --prompt="$prompt" --query="$@" --multi \ --preview="sh -c 'f=\"$td/files/\${1%.trashinfo}\"; [ -d \"\$f\" ] && tree \"\$f\" || echo \"\$f\" && cat \"\$f\"' -- {}" @@ -71,11 +69,7 @@ confirm() { tput civis >/dev/tty; printf '\033[1m%s\033[0m' "$2" >/dev/tty; stty -icanon -echo >/dev/tty 2>/dev/tty; - if [ "$(uname)" = "Darwin" ]; then - read -n 1 REPLY /dev/tty; - else - REPLY="$(dd bs=1 count=1 2>/dev/null /dev/tty 2>/dev/tty tput cvvis >/dev/tty [ "$REPLY" = "y" ]