aboutsummaryrefslogtreecommitdiff
path: root/config/i3/scripts/notes
blob: 6b9cc8ce557c1548349534f9b9f784efe73f7dd8 (plain)
1
2
3
4
5
6
#!/bin/sh

cd ~/notes
find * -type f | dmenu -p 'notes' | while read -r note; do
	nohup urxvt -title 'notes-terminal-window' -e vim ~/notes/"$note" >/dev/null 2>&1 &
done