aboutsummaryrefslogtreecommitdiff
path: root/config/i3/scripts/notes
blob: dc13bb068c359fd6c181d49b553bda98f198f31b (plain)
1
2
3
4
5
6
7
8
#!/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