1
0
Fork 0
mirror of https://gitlab.com/dwt1/dotfiles.git synced 2023-02-13 20:55:19 -05:00
dwt1--dotfiles/macho-gui.sh

13 lines
281 B
Bash
Raw Normal View History

2020-07-11 18:57:38 -04:00
#!/bin/sh
manual=$(apropos -s ${SECTION:-''} ${@:-.} | \
grep -v -E '^.+ \(0\)' |\
awk '{print $2 " " $1}' | \
sort | \
dmenu -i -p "Manual: " | \
sed -E 's/^\((.+)\)/\1/')
if [ -z "$MANUAL" ]; then
man -T${FORMAT:-pdf} $manual | ${READER:-zathura -}
fi