2020-08-15 22:25:43 +02:00
|
|
|
# qute-gemini
|
|
|
|
|
2021-03-05 12:29:00 +01:00
|
|
|
A [qutebrowser](https://qutebrowser.org) userscript that allows viewing
|
|
|
|
[Gemini](https://gemini.circumlunar.space) pages. The pages are converted to
|
|
|
|
HTML by the script and then displayed in qutebrowser.
|
2020-08-15 22:25:43 +02:00
|
|
|
|
|
|
|
The script borrows code from [gcat](https://github.com/aaronjanse/gcat), many
|
|
|
|
thanks to its authors!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2021-03-05 12:29:00 +01:00
|
|
|
1. Copy `qute-gemini` and `qute-gemini-tab` into
|
2021-03-06 17:48:59 +01:00
|
|
|
`~/.local/share/qutebrowser/userscripts/`.
|
2020-08-15 22:25:43 +02:00
|
|
|
|
2021-03-06 17:48:59 +01:00
|
|
|
2. Set custom keybinding for opening Gemini URLs by adding the following lines
|
|
|
|
to `~/.config/qutebrowser/config.py`:
|
2020-08-15 22:25:43 +02:00
|
|
|
|
|
|
|
``` python
|
2021-03-06 17:48:59 +01:00
|
|
|
# Open in the current tab
|
|
|
|
config.bind(';g', 'hint links userscript qute-gemini')
|
|
|
|
# Open in a new tab
|
|
|
|
config.bind(';G', 'hint links userscript qute-gemini-tab')
|
2020-08-15 22:25:43 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
The script only processes `gemini://` URLs and opens all other URLs using
|
2021-03-06 17:48:59 +01:00
|
|
|
qutebrowser, so opening a non-`gemini://` should also work.
|
2020-08-15 22:25:43 +02:00
|
|
|
|
2021-03-06 17:48:59 +01:00
|
|
|
3. Re-source the qutebrowser config or restart qutebrowser and visit the
|
|
|
|
[Gemini spec homepage](gemini://gemini.circumlunar.space)
|
|
|
|
to ensure that everything works.
|
2020-08-15 22:25:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2021-03-05 12:49:34 +01:00
|
|
|
## Known issues
|
|
|
|
|
|
|
|
- Userscript limitations
|
|
|
|
- Only `text/gemini` content is shown.
|
|
|
|
- Qutebrowser limitations
|
|
|
|
- Opening `gemini://` URLs by clicking on them does not work, only opening
|
|
|
|
them via the keybinding is possible.
|
|
|
|
- Qutebrowser userscripts don't accept arguments. My solution to being able
|
|
|
|
to open links in the same or a different tab was to call the script under
|
|
|
|
a different name.
|
2020-08-15 22:25:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
2021-03-05 11:55:53 +01:00
|
|
|
Copyright 2019 Solderpunk, 2020 Aaron Janse, 2020 petedussin, 2020-2021 Sotiris Papatheodorou
|
|
|
|
|
|
|
|
This program is Free Software: You can use, study share and improve it at your
|
|
|
|
will. Specifically you can redistribute and/or modify it under the terms of the
|
|
|
|
[GNU General Public License](https://www.gnu.org/licenses/gpl.html) as
|
|
|
|
published by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2021-03-06 17:48:59 +01:00
|
|
|
|
2021-03-05 11:55:53 +01:00
|
|
|
gcat is distributed under the BSD 2-Clause license.
|
2020-08-15 22:25:43 +02:00
|
|
|
|