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.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/data/scripts/load_url_from_bookmarks.sh b/examples/data/scripts/load_url_from_bookmarks.sh
index d47d189..5ba0d90 100755
--- a/examples/data/scripts/load_url_from_bookmarks.sh
+++ b/examples/data/scripts/load_url_from_bookmarks.sh
@@ -12,10 +12,10 @@ DMENU_OPTIONS="xmms vertical resize"
if [ -z "$DMENU_HAS_VERTICAL" ]; then
# because they are all after each other, just show the url, not their tags.
- goto="$(awk '{print $1}' "$UZBL_BOOKMARKS_FILE" | $DMENU)"
+ goto="$( awk '{ print $1 }' "$UZBL_BOOKMARKS_FILE" | $DMENU )"
else
# show tags as well
- goto="$($DMENU < "$UZBL_BOOKMARKS_FILE" | awk '{print $1}')"
+ goto="$( $DMENU < "$UZBL_BOOKMARKS_FILE" | awk '{ print $1 }' )"
fi
[ -n "$goto" ] && echo "uri $goto" > "$UZBL_FIFO"