summaryrefslogtreecommitdiffstats
path: root/.local/bin/dme
blob: dce2484356376d830219b1b635458d0b4e754c6a (plain)
1
2
3
4
5
6
#!/bin/sh -e

file=$(find . -type f | dmenu -i -l 30 -m 0)
bsdsetsid emacsclient -c "$file"
kill -9 "$(ps -p $$ -oppid=)"
exit