blob: 926829f944bfc8e597fd05d384c4859a6e36d541 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#!/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
|