summaryrefslogtreecommitdiff
path: root/rmt-history
diff options
context:
space:
mode:
Diffstat (limited to 'rmt-history')
-rwxr-xr-xrmt-history15
1 files changed, 15 insertions, 0 deletions
diff --git a/rmt-history b/rmt-history
new file mode 100755
index 0000000..dd6880f
--- /dev/null
+++ b/rmt-history
@@ -0,0 +1,15 @@
+#! /bin/bash
+
+source ./util/hpath
+
+selected="$(echo "$(cat "$HPATH" | tac)" | dmenu -i \
+ -l 20 \
+ -p 'Select Link:' \
+ -nb '#ffffff' \
+ -nf '#000080' \
+ -sb '#000080' \
+ -sf '#ffffff')"
+[ -z "$selected" ] && exit 0
+
+./rmt-action "$1" "$selected"
+