diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-06-19 01:09:11 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-06-19 01:09:11 +0400 |
commit | db0dfe5ce621ab346046a8e144407e8b151123c9 (patch) | |
tree | 0d44327af735e2bc00f35d20cb9341b031f38f25 /config | |
parent | 86e41aa7d35073f1cf675e50fa2c9f138d417f63 (diff) |
chore(qutebrowser): clean up theme, bookmarks and startpage
- Move themes in themes/ folder
- Update startpage/index.html: fix height to 100vh, set font to JetBrains Mono 11px, remove unused stylesheet link
- Add new themes: ayu_light and nord
- Use `current_theme.py` sym-link for selection of themes
Diffstat (limited to 'config')
l--------- | config/qutebrowser/bookmarks/bookmarks.txt | 1 | ||||
-rwxr-xr-x | config/qutebrowser/bookmarks/urls | 2 | ||||
-rwxr-xr-x | config/qutebrowser/config.py | 2 | ||||
l--------- | config/qutebrowser/current_theme.py | 1 | ||||
-rwxr-xr-x[-rw-r--r--] | config/qutebrowser/startpage/index.html | 6 | ||||
-rw-r--r-- | config/qutebrowser/themes/ayu_light.py | 16 | ||||
-rw-r--r-- | config/qutebrowser/themes/gruvbox.py (renamed from config/qutebrowser/gruvbox.py) | 0 | ||||
-rw-r--r-- | config/qutebrowser/themes/nord.py | 16 |
8 files changed, 38 insertions, 6 deletions
diff --git a/config/qutebrowser/bookmarks/bookmarks.txt b/config/qutebrowser/bookmarks/bookmarks.txt new file mode 120000 index 0000000..526f096 --- /dev/null +++ b/config/qutebrowser/bookmarks/bookmarks.txt @@ -0,0 +1 @@ +../../sites/bookmarks.txt
\ No newline at end of file diff --git a/config/qutebrowser/bookmarks/urls b/config/qutebrowser/bookmarks/urls deleted file mode 100755 index 0711a66..0000000 --- a/config/qutebrowser/bookmarks/urls +++ /dev/null @@ -1,2 +0,0 @@ -yewtu.be -onion.tube diff --git a/config/qutebrowser/config.py b/config/qutebrowser/config.py index faaf7f2..fa84b4e 100755 --- a/config/qutebrowser/config.py +++ b/config/qutebrowser/config.py @@ -1,4 +1,4 @@ -from gruvbox import * +from current_theme import * # Text color of the completion widget. May be a single color to use for # all columns or a list of three colors, one for each column. diff --git a/config/qutebrowser/current_theme.py b/config/qutebrowser/current_theme.py new file mode 120000 index 0000000..f9e5462 --- /dev/null +++ b/config/qutebrowser/current_theme.py @@ -0,0 +1 @@ +themes/nord.py
\ No newline at end of file diff --git a/config/qutebrowser/startpage/index.html b/config/qutebrowser/startpage/index.html index b848797..05a074f 100644..100755 --- a/config/qutebrowser/startpage/index.html +++ b/config/qutebrowser/startpage/index.html @@ -3,14 +3,14 @@ <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <link rel='stylesheet' type='text/css' href="style.css"> <title>startpage</title> <style> body { - height: 97.5vh; + height: 100vh; display: flex; align-items: center; - font: 12px monospace; + font-family: "JetBrains Mono"; + font-size: 11px; justify-content: center; background: #212121; color: #fff; diff --git a/config/qutebrowser/themes/ayu_light.py b/config/qutebrowser/themes/ayu_light.py new file mode 100644 index 0000000..afb20e9 --- /dev/null +++ b/config/qutebrowser/themes/ayu_light.py @@ -0,0 +1,16 @@ +base00 = "#fafafa" +base01 = "#f0f0f0" +base02 = "#dedede" +base03 = "#b3b1ad" +base04 = "#9e9e9e" +base05 = "#5c6773" +base06 = "#6c7680" +base07 = "#14191f" +base08 = "#ff3333" +base09 = "#f6973f" +base0A = "#f2ae49" +base0B = "#86b300" +base0C = "#4cbf99" +base0D = "#36a3d9" +base0E = "#a37acc" +base0F = "#d33f3f" diff --git a/config/qutebrowser/gruvbox.py b/config/qutebrowser/themes/gruvbox.py index d06e346..d06e346 100644 --- a/config/qutebrowser/gruvbox.py +++ b/config/qutebrowser/themes/gruvbox.py diff --git a/config/qutebrowser/themes/nord.py b/config/qutebrowser/themes/nord.py new file mode 100644 index 0000000..3e4f13d --- /dev/null +++ b/config/qutebrowser/themes/nord.py @@ -0,0 +1,16 @@ +base00 = "#2e3440" +base01 = "#3b4252" +base02 = "#434c5e" +base03 = "#4c566a" +base04 = "#d8dee9" +base05 = "#e5e9f0" +base06 = "#eceff4" +base07 = "#8fbcbb" +base08 = "#bf616a" +base09 = "#d08770" +base0A = "#ebcb8b" +base0B = "#a3be8c" +base0C = "#88c0d0" +base0D = "#81a1c1" +base0E = "#b48ead" +base0F = "#5e81ac" |