1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00
dotfiles/private_dot_local/bin/executable_tldr-dmenu

6 lines
293 B
Plaintext
Raw Permalink Normal View History

2020-03-26 11:31:18 +00:00
#!/usr/bin/env sh
2022-10-09 15:30:41 +00:00
command=$(curl --silent "https://github.com/tldr-pages/tldr/tree/master/pages/linux" | grep -o "[1-zA-Z0-9\-]*.md" | cut -f 1 -d '.' | uniq | sort | dmenu -p "tldr" -i)
2020-03-26 11:31:18 +00:00
test ! -z "$command" && alacritty --class float,float -e ~/.config/polybar/bin/tldr-and-wait "$command"