This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/common/bin/fzf-history-weight

16 lines
313 B
Bash
Executable File

#!/usr/bin/env bash
rf="$1" # history count record file
cf="$1" # all choices file
touch "$LAUNCHER_HISTORY_FILE"
app="$(
< "$rf" awk 'NF{NF--};1' | cat - "$cf" | \
sort | uniq -c | sort -nr | \
sd '^\s+' '' | \
cut -d' ' -f2- | \
sk
)"
echo "$app $(date +%s)" >> "$LAUNCHER_HISTORY_FILE"
echo "$app"