aboutsummaryrefslogtreecommitdiff
path: root/stow/qutebrowser/.config
diff options
context:
space:
mode:
Diffstat (limited to 'stow/qutebrowser/.config')
-rw-r--r--stow/qutebrowser/.config/qutebrowser/config.py19
1 files changed, 12 insertions, 7 deletions
diff --git a/stow/qutebrowser/.config/qutebrowser/config.py b/stow/qutebrowser/.config/qutebrowser/config.py
index a8702d7..52f1f9a 100644
--- a/stow/qutebrowser/.config/qutebrowser/config.py
+++ b/stow/qutebrowser/.config/qutebrowser/config.py
@@ -1358,9 +1358,10 @@ c.url.default_page = '/home/taamas/.mainpage/index.html'
## `:open google qutebrowser`.
## Type: Dict
c.url.searchengines = {
- 'DEFAULT': 'https://searx.be/search?q={}&categories=general', #searx.be
- 's': 'https://searx.be/search?q={}&categories=general', #searx.be
- 'i': 'https://searx.be/search?q={}&categories=images', #searx.be images
+ 'DEFAULT': 'https://duckduckgo.com/?q={}', #searx
+ #'DEFAULT': 'https://searx.work/search?q={}&categories=general', #searx
+ #'s': 'https://searx.work/search?q={}&categories=general', #searx
+ #'i': 'https://searx.work/search?q={}&categories=images', #searx images
'ddg': 'https://duckduckgo.com/?q={}', #duckduckgo
'y': 'https://www.youtube.com/results?search_query={}', #youtube
'tw': 'https://twitter.com/{}', #twitter
@@ -1398,7 +1399,11 @@ c.url.searchengines = {
'te': 'https://simplytranslate.org/?engine=google&text={}&sl=auto&tl=en', # SimplyTranslate to English
'tiempo': 'https://www.eltiempo.es/{}.html', # eltiempo.es,
'dq': 'https://dream-quest.fandom.com/wiki/{}', # Dream Quest
- 'wb': 'https://wiby.me/?q={}' # Wiby
+ 'wb': 'https://wiby.me/?q={}', # Wiby
+ 'mtgart': 'https://www.artofmtg.com/?s={}', # Art of MTG
+ 'bgg': 'https://boardgamegeek.com/geeksearch.php?action=search&q={}&objecttype=boardgame', # Board Games Geek
+ 'bga': 'https://boardgamearena.com/gamepanel?game={}', # Board Game Arena
+ 'do': 'http://wiki.dominionstrategy.com/index.php/{}' # Dominion Wiki
}
## Page(s) to open at the start.
@@ -1595,9 +1600,9 @@ config.bind('U', 'undo')
## Custom normal mode bindings
# open url with mpv
-config.bind(',v', 'spawn sh -c "mpv {url}; disown"')
-config.bind(',fv', 'hint links spawn sh -c "nohup mpv {hint-url}; disown"')
-config.bind(',Fv', 'hint all spawn sh -c "nohup mpv {hint-url}; disown"')
+config.bind(',v', 'spawn sh -c "mpv {url} && disown"')
+config.bind(',fv', 'hint links spawn sh -c "nohup mpv {hint-url} && disown"')
+config.bind(',Fv', 'hint all spawn sh -c "nohup mpv {hint-url} && disown"')
config.bind(',V', 'spawn mpvFloat.sh {url}')
config.bind(',fV', 'hint links spawn mpvFloat.sh {hint-url}')
config.bind(',FV', 'hint all spawn mpvFloat.sh {hint-url}')