summaryrefslogtreecommitdiff
path: root/misc/userscripts/dmenu_qutebrowser
blob: 8598865ee62c2283467d5d46b1a512d4a74ce09d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env bash

# Copyright 2015 Zach-Button <zachrey.button@gmail.com>
# Copyright 2015-2021 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
#
# SPDX-License-Identifier: GPL-3.0-or-later

# Pipes history, quickmarks, and URL into dmenu.
#
# If run from qutebrowser as a userscript, it runs :open on the URL
# If not, it opens a new qutebrowser window at the URL
#
# Ideal for use with tabs_are_windows. Set a hotkey to launch this script, then:
#	:bind o spawn --userscript dmenu_qutebrowser
#
# Use the hotkey to open in new tab/window, press 'o' to open URL in current tab/window
# You can simulate "go" by pressing "o<tab>", as the current URL is always first in the list
#
# I personally use "<Mod4>o" to launch this script. For me, my workflow is:
#	Default	keys		Keys with this script
#	O			<Mod4>o
#	o			o
#	go			o<Tab>
#	gO			gC, then o<Tab>
#				(This is unnecessarily long. I use this rarely, feel free to make this script accept parameters.)
#


[ -z "$QUTE_URL" ] && QUTE_URL='https://duckduckgo.com'

url=$(printf "%s\n%s" "$QUTE_URL" "$(sqlite3 -separator ' ' "$QUTE_DATA_DIR/history.sqlite" 'select title, url from CompletionHistory')" | cat "$QUTE_CONFIG_DIR/quickmarks" - | dmenu -l 15 -p qutebrowser)
url=$(echo "$url" | sed -E 's/[^ ]+ +//g' | grep -E "https?:" || echo "$url")

[ -z "${url// }" ] && exit

echo "open $url" >> "$QUTE_FIFO" || qutebrowser "$url"