Files
workspace/arch-user/bin/menu/run-man.sh
2025-10-26 03:16:52 +00:00

16 lines
282 B
Bash
Executable File

#!/bin/sh
shift
page="$1"
if [ -z "$page" ]; then
page="$(
apropos -s 1,5,8 . | \
~/.local/bin/menu/vertical.sh -p "man" | \
sed 's/ (\([^)]*\)).*/.\1/'
)"
if [ -z "$page" ]; then
exec ~/.local/bin/menu/run.sh
fi
fi
exec ~/.local/bin/menu/run-float-sh.sh "man" "$page"