aboutsummaryrefslogtreecommitdiff
path: root/config/sway/scripts/notes
blob: ebe2684fc1a2fee32a04259a849ccb3ccb769d1a (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 vim ~/notes/"$note" >/dev/null 2>&1 &
done