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

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