aboutsummaryrefslogtreecommitdiffhomepage
path: root/extra/insert_bookmark.sh
blob: 083a4b444f2532e02b2cef6b51117ecc9f6751d3 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
file=bookmarks

which zenity &>/dev/null || exit 2

entry=`zenity --entry --text="Add bookmark. add tags at the end, separated by commas" --entry-text="$5"`
url=`awk '{print $1}' <<< $entry`
# TODO: check if already exists, if so, and tags are different: ask if you want to replace tags
echo "$entry" >> $file