aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/scripts/insert_bookmark.sh
blob: 65fb5c5ea6c5e306476eaeac1b0dcbcc08c6da8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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 2>&1 >/dev/null || exit 2
# replace tabs, they are pointless in titles and we want to use tabs as delimiter.
title=$(echo "$UZBL_TITLE" | sed 's/\t/    /')
entry=$(zenity --entry --text="Add bookmark. add tags after the '\t', separated by spaces" --entry-text="$UZBL_URL $title\t")
exitstatus=$?
if [ $exitstatus -ne 0 ]; then exit $exitstatus; fi
url=$(echo $entry | awk '{print $1}')

# TODO: check if already exists, if so, and tags are different: ask if you want to replace tags
echo "$entry" >/dev/null #for some reason we need this.. don't ask me why
printf "$entry\n" >> $UZBL_BOOKMARKS_FILE
true