aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/scripts/load_url_from_bookmarks.sh
diff options
context:
space:
mode:
Diffstat (limited to 'examples/data/scripts/load_url_from_bookmarks.sh')
-rwxr-xr-xexamples/data/scripts/load_url_from_bookmarks.sh14
1 files changed, 6 insertions, 8 deletions
diff --git a/examples/data/scripts/load_url_from_bookmarks.sh b/examples/data/scripts/load_url_from_bookmarks.sh
index 3bcb60f..1cf8ea4 100755
--- a/examples/data/scripts/load_url_from_bookmarks.sh
+++ b/examples/data/scripts/load_url_from_bookmarks.sh
@@ -2,20 +2,18 @@
#NOTE: it's the job of the script that inserts bookmarks to make sure there are no dupes.
+source $UZBL_UTIL_DIR/dmenu.sh
source $UZBL_UTIL_DIR/uzbl-args.sh
source $UZBL_UTIL_DIR/uzbl-dir.sh
[ -r "$UZBL_BOOKMARKS_FILE" ] || exit 1
-COLORS=" -nb #303030 -nf khaki -sb #CCFFAA -sf #303030"
-if dmenu --help 2>&1 | grep -q '\[-rs\] \[-ni\] \[-nl\] \[-xs\]'; then
- DMENU="dmenu -i -xs -rs -l 10" # vertical patch
- # show tags as well
- goto=$($DMENU $COLORS < $UZBL_BOOKMARKS_FILE | awk '{print $1}')
+if [ "x$DMENU_HAS_VERTICAL" = "x" ]; then
+ # because they are all after each other, just show the url, not their tags.
+ goto=$(awk '{print $1}' $UZBL_BOOKMARKS_FILE | $DMENU)
else
- DMENU="dmenu -i"
- # because they are all after each other, just show the url, not their tags.
- goto=$(awk '{print $1}' $UZBL_BOOKMARKS_FILE | $DMENU $COLORS)
+ # show tags as well
+ goto=$($DMENU < $UZBL_BOOKMARKS_FILE | awk '{print $1}')
fi
#[ -n "$goto" ] && echo "uri $goto" > $UZBL_FIFO