diff options
| author | LM-LCL <hello@exaltedelite.club> | 2023-04-19 21:23:42 +0200 |
|---|---|---|
| committer | LM-LCL <hello@exaltedelite.club> | 2023-04-19 21:23:42 +0200 |
| commit | b98f0f496b6739749257804297468fb71845a776 (patch) | |
| tree | 44096c59211f1d877515914273cde862fbf47c1f /rmt-history | |
EZown
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" + |
