22 lines
No EOL
382 B
Bash
Executable file
22 lines
No EOL
382 B
Bash
Executable file
#!/bin/sh
|
|
|
|
wikidir="/usr/share/doc/arch-wiki/html/en/"
|
|
|
|
wikidocs="$(find ${wikidir} -iname "*.html")"
|
|
|
|
browser="links"
|
|
|
|
term="st"
|
|
|
|
main() {
|
|
choice=$(printf '%s\n' "${wikidocs[@]}" | \
|
|
dmenu -fn "12" -l 20 -p 'Arch Wiki Docs: ') || exit 1
|
|
|
|
if [ "$choice" ]; then
|
|
$term -e $browser "$choice"
|
|
else
|
|
echo "Program terminated." && exit 0
|
|
fi
|
|
}
|
|
|
|
main |