blob: a44a61e0539c068deae1634d60efa6ae0450e5c4 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
cd ~/notes
find * -type f | dmenu -p 'notes' | while read -r note; do
nohup \
urxvt -title 'notes-terminal-window' -e \
vim +"set lines=26 columns=88" ~/notes/"$note" \
>/dev/null 2>&1 &
done
|