dotfiles/home/.local/bin/scripts/gui/dmenu-scripts/dman
2022-11-20 03:14:18 +01:00

12 lines
216 B
Bash
Executable file

#!/bin/sh
# Dmenu prompt to easily search for a man page to open
page="$(apropos --long "$1" | dmenu -i -l 10 | awk '{print $2, $1}' | tr -d '()')"
if tty -s; then
man $page
else
$TERMINAL -e man $page
fi