aboutsummaryrefslogtreecommitdiff
path: root/config/sway/scripts/notes
blob: 8f025fb471df18759391f2fbce057045eb16078b (plain)
1
2
3
4
5
#!/bin/sh
cd ~/notes
find * -type f | wofi -d -p 'notes' | while read -r note; do
	nohup alacritty -e nvim ~/notes/"$note" >/dev/null 2>&1 &
done