No description
__pycache__ | ||
.gitignore | ||
__init__.py | ||
README.md | ||
setup.py |
Themes repo for qutebrowser themes
Installation:
Just clone the repo into your qutebrowser directory, where you can then import it as a module:
git clone --depth=1 https://git.k4li.de/pika/qute-themes.git "${HOME}/.config/qutebrowser/themes"
Usage:
To setup a theme just import the cloned module to your config, and call the setup function:
This assumes the module is exacly cloned like in the cmd above
import themes
themes.setup(c, 'macintosh', True, False)
The setup function takes in a theme-name, and optionally 2 Booleans. They both configure the odd and even colors for Qutebrowser.
If the first one is True
, then the tab-colors are the same for even and odd
If the second one is True
, then the completion-colors are the same for even and odd
If you already have a themes folder, you can also clone this repo into that dir somewhere like:
git clone --depth=1 https://git.k4li.de/pika/qute-themes.git "${HOME}/.config/qutebrowser/themes/pika"
Then you have to call it a bit differently:
from themes import pika pika.setup(c, 'kanagawa', True, False)
currently implemented themes:
- OneDark - Dark | as 'onedark'
- base16-macintosh | as 'macintosh'
- base16-kanagawa | as 'kanagawa'
- base16-ayu-dark | as 'ayu'