summaryrefslogtreecommitdiffstats
path: root/.local/bin
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin')
-rwxr-xr-x.local/bin/dmbin6
-rwxr-xr-x.local/bin/dmconf6
-rwxr-xr-x.local/bin/dme6
3 files changed, 18 insertions, 0 deletions
diff --git a/.local/bin/dmbin b/.local/bin/dmbin
new file mode 100755
index 0000000..2d2405b
--- /dev/null
+++ b/.local/bin/dmbin
@@ -0,0 +1,6 @@
+#!/bin/sh -e
+
+file=$(find "$HOME"/.local/bin -type f | dmenu -i -l 20 -m 0)
+bsdsetsid emacsclient -c "$file"
+kill -9 "$(ps -p $$ -oppid=)"
+exit
diff --git a/.local/bin/dmconf b/.local/bin/dmconf
new file mode 100755
index 0000000..931fe3d
--- /dev/null
+++ b/.local/bin/dmconf
@@ -0,0 +1,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
diff --git a/.local/bin/dme b/.local/bin/dme
new file mode 100755
index 0000000..dce2484
--- /dev/null
+++ b/.local/bin/dme
@@ -0,0 +1,6 @@
+#!/bin/sh -e
+
+file=$(find . -type f | dmenu -i -l 30 -m 0)
+bsdsetsid emacsclient -c "$file"
+kill -9 "$(ps -p $$ -oppid=)"
+exit