mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2023-02-13 20:55:19 -05:00
13 lines
281 B
Bash
13 lines
281 B
Bash
|
#!/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
|