blob: 44279f5dc5f1636faae74c69a756d6038c2ab8bb (
plain)
1
2
3
4
5
6
|
#!/bin/sh
# A script which lists all the manuals in the system
# without the requiring a cronjob to run mandb
MANPATH=/usr/share/man
find "$MANPATH" -type f -printf '%f\n' | sed 's:.bz2::g;s:.gz::g' | sort | uniq | dmenu -i -p "Manual: "| xargs -I {} "$TERMINAL" -e man {}
|