The NIX update

This commit is contained in:
2024-10-09 16:55:47 +01:00
parent 2122fdb629
commit 555c2bd5cb
341 changed files with 1136 additions and 44347 deletions

18
scripts/dm-mansearch Executable file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env bash
prompt="-p Manual:"
# terminal to open manual
terminal="st"
# list all manuals
manual="$(man -k . | dmenu $prompt | awk '{print $1}')"
# open selected manual with terminal
if [[ ! -z "$manual" ]]; then
eval "$($terminal -e man $manual)"
fi
exit 0