5 lines
112 B
Bash
5 lines
112 B
Bash
#!/bin/bash
|
|
|
|
man_choice=$(apropos . | awk '{ print $1 }' | dmenu -i)
|
|
nvim -c ":Man $man_choice" -c "resize 100"
|