Merge branch 'bash' of https://github.com/paretje/qutebrowser into paretje-bash

This commit is contained in:
Florian Bruhin 2016-07-26 12:13:15 +02:00
commit 9bd48c4277
3 changed files with 8 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
# Both standalone script and qutebrowser userscript that opens a rofi menu with
# all files from the download director and opens the selected file. It works
# both as a userscript and a standalone script that is called from outside of
@ -18,6 +18,8 @@
# Thorsten Wißmann, 2015 (thorsten` on freenode)
# Any feedback is welcome!
set -e
# open a file from the download directory using rofi
DOWNLOAD_DIR=${DOWNLOAD_DIR:-$QUTE_DOWNLOAD_DIR}
DOWNLOAD_DIR=${DOWNLOAD_DIR:-$HOME/Downloads}

View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
help() {
blink=$'\e[1;31m' reset=$'\e[0m'
cat <<EOF
@ -39,6 +39,7 @@ Configuration:
EOF
}
set -o errexit
set -o pipefail
shopt -s nocasematch # make regexp matching in bash case insensitive

View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
#
# Behavior:
# Userscript for qutebrowser which views the current web page in mpv using
@ -24,6 +24,8 @@
# Thorsten Wißmann, 2015 (thorsten` on freenode)
# Any feedback is welcome!
set -e
if [ -z "$QUTE_FIFO" ] ; then
cat 1>&2 <<EOF
Error: $0 can not be run as a standalone script.