summaryrefslogtreecommitdiff
path: root/bm
diff options
context:
space:
mode:
authortsxv478 <vt0451@yandex.ru>2022-11-13 04:17:20 +0300
committertsxv478 <vt0451@yandex.ru>2022-11-13 04:17:20 +0300
commitb4bb66c47323ee531473d3176a807bd1a2aa7ac5 (patch)
tree1129eedfa9ed13974257c95ea6e66aa85a472da7 /bm
parentb6942b1015683b251dc9cb65908d9dcc5d4d3ebf (diff)
minor fixes
Diffstat (limited to 'bm')
-rwxr-xr-xbm8
1 files changed, 4 insertions, 4 deletions
diff --git a/bm b/bm
index c659974..69f9bb7 100755
--- a/bm
+++ b/bm
@@ -1,13 +1,13 @@
#!/bin/sh
-path="$HOME/.local/share/bookmarks.txt"
-bookmark=$(cat $path | dmenu -i -c -l 15 -p "Bookmark:")
+dir="$HOME/.local/share/bookmarks.txt"
+bookmark=$(tac $dir | dmenu -i -c -l 15 -p "Bookmark:")
[ -z $bookmark ] && exit
# append a url to the list if it's not present and exit
-[ -z $(grep -F $bookmark $path) ] && printf "%s\n" "$bookmark" >> $path && exit
+[ -z $(grep -F $bookmark $dir) ] && printf "%s\n" "$bookmark" >> $dir && exit
-action=$(printf "Open in browser\nCopy to clipboard\n" | dmenu -i -c -l 2 -p "Action:")
+action=$(printf "Open in browser\nCopy to clipboard" | dmenu -i -c -l 2 -p "Action:")
case $action in
"Open in browser") $BROWSER $bookmark ;;