Questions tagged [qutebrowser]

qutebrowser is a web browser for Linux, Windows, and macOS operating systems with vim-style key bindings and a minimal GUI. It is keyboard-driven and is inspired by similar software such as Vimperator and dwb. It uses DuckDuckGo as the default search engine.

qutebrowser is a web browser for Linux, Windows, and macOS operating systems with vim-style key bindings and a minimal GUI. It is keyboard-driven and is inspired by similar software such as Vimperator and dwb. It uses DuckDuckGo as the default search engine.


References

4 questions
2
votes
0 answers

Getting a tab list from the console in Qutebrowser

We want to create a script that shows the music I am playing from Spotify in a web browser. Is there a way I can get the names of the opened tabs in Qutebrowser from the terminal?
Ramon
  • 31
  • 2
1
vote
2 answers

Is it possible to start eww with an url via script from shell?

Sometimes I read an article in my browser (qutebrowser) and think, oh "that article would be nice to work on in emacs". I can call scripts from the browser, and hand them the visited URL. Is it possible to call emacs (or even better emacsclient, as…
DrOps
  • 33
  • 5
0
votes
1 answer

After qutebrowser flatpak installed, qute-pass quit working

I installed qutebrowser via flatpak to try to keep pain with the Qt web libary to a minumum, and it's working great, except that suddenly, the qute-pass userscript no longer works. It says it tried the correct domains but could find no entries. If…
0
votes
1 answer

nginx's proxy_pass redirects me to another URL

I'm building a website with nginx: server_name example.xyz; location /9rJQi6opvrkXBhp2S7nqQ2/ { proxy_pass http://localhost:5000/; } This is my Flask app (but I don't think Flask is the problem): #!/usr/bin/python3 from flask import…