#!/usr/bin/env zsh local binary local -a binaries binaries=( bat bpytop chezmoi chroma exa fasd fd flamegraph.pl fzf git git-extras gopass htop lsd man micro nano ncdu neofetch python ranger rg todo.txt xq jq blackd black yt-dlp tac prettyping gping trash qrencode ) echo "Checking binaries:" for binary in ${binaries}; do if which ${binary} &>/dev/null; then print -r " ${fg_bold[green]}✔${reset_color} ${binary}" else print -r " ${fg_bold[red]}✘${reset_color} ${binary}" fi done