summaryrefslogtreecommitdiff
path: root/.uzbl/scripts
diff options
context:
space:
mode:
Diffstat (limited to '.uzbl/scripts')
-rwxr-xr-x.uzbl/scripts/mytest.sh14
-rwxr-xr-x.uzbl/scripts/ytdl.sh8
2 files changed, 0 insertions, 22 deletions
diff --git a/.uzbl/scripts/mytest.sh b/.uzbl/scripts/mytest.sh
deleted file mode 100755
index f310e49..0000000
--- a/.uzbl/scripts/mytest.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-. "$UZBL_UTIL_DIR/uzbl-dir.sh"
-
->> "$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
-echo "$UZBL_URI $tags" >> "$UZBL_BOOKMARKS_FILE"
diff --git a/.uzbl/scripts/ytdl.sh b/.uzbl/scripts/ytdl.sh
deleted file mode 100755
index acf327a..0000000
--- a/.uzbl/scripts/ytdl.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-cd ~/Downloads # change this line to determine where the file is saved
-python2 youtube-dl -o %\(title\)s.%\(ext\)s "$1" # -o output template is optional
-# play with mplayer after download
-savename=`python2 youtube-dl -o %\(title\)s.%\(ext\)s --get-filename "$1"`
-mplayer -really-quiet "$savename"
-ratpoison -c "echo [ytdl-uzbl] $1 done." # change this line to change how you are notified of a
- # completed download