summaryrefslogtreecommitdiffstats
path: root/bin/bukuadd_c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/bukuadd_c')
-rwxr-xr-xbin/bukuadd_c29
1 files changed, 0 insertions, 29 deletions
diff --git a/bin/bukuadd_c b/bin/bukuadd_c
deleted file mode 100755
index d4e1a3d..0000000
--- a/bin/bukuadd_c
+++ /dev/null
@@ -1,29 +0,0 @@
1#!/bin/bash
2
3#set -e
4url=$(xsel -b)
5tags=$(zenity --entry --text="enter tags for $url")
6
7if [[ $? -ne 0 ]]; then
8 exit 0
9fi
10
11FOO=$(buku --np --nc -p -1)
12OUT="$(buku --np --nc -a "$url" "$tags" 2>&1)"
13#echo "OUT>$OUT"
14if [[ $OUT =~ "ERROR" ]] ; then
15 notify-send "Bookmarking Failed" "$OUT" --app-name="buku" --icon="dialog-error"
16 exit 1
17fi
18
19BAR=$FOO
20
21while [[ $BAR == "$FOO" ]]; do
22 sleep 1
23 BAR=$(buku --np --nc -p -1)
24 #echo "BAR>$BAR"
25done;
26
27notify-send "Success" "$BAR" --app-name="buku" --icon="checkmark"
28
29exit 0