diff options
Diffstat (limited to 'rmt-history')
| -rwxr-xr-x | rmt-history | 15 |
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" + |
