diff --git a/scripts/remwharead-rofi b/scripts/remwharead-rofi new file mode 100755 index 0000000..47d1ac4 --- /dev/null +++ b/scripts/remwharead-rofi @@ -0,0 +1,15 @@ +#!/bin/sh +# Open the whole database in rofi. Searches in title, tags and URI. +# The selected entry will be opened with the default browser. + +if [ -n "${2}" ]; then + uri=$(echo "${*}" | sed -E 's|^.+>([^><]+)$|\1|') + xdg-open "${uri}" + exit 0 +fi + +if [ "${1}" = "runremwharead" ]; then + /home/tastytea/Projekte/remwharead/build/src/cli/remwharead -e rofi +else + rofi -show remwharead -modi remwharead:"${0} runremwharead" +fi