#!/bin/sh . "$UZBL_UTIL_DIR/uzbl-dir.sh" [ -d "$UZBL_DATA_DIR" ] || exit 1 [ -w "$UZBL_BOOKMARKS_FILE" ] || [ ! -a "$UZBL_BOOKMARKS_FILE" ] || exit 1 which zenity >/dev/null 2>&1 || exit 2 tags="$( zenity --entry --text="Enter space-separated tags for bookmark $UZBL_URI:" )" exitstatus="$?" [ "$exitstatus" -eq 0 ] || exit "$exitstatus" # TODO: check if already exists, if so, and tags are different: ask if you want to replace tags printf "$UZBL_URI $tags\n" >> "$UZBL_BOOKMARKS_FILE"