diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2024-02-11 13:10:24 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2024-02-11 13:10:24 +0400 |
commit | a94719ad4a1151cc4f0700e73c1ca3b1b1b538d6 (patch) | |
tree | 232cb16745a895a7b20af072e652da7e1b660b5f | |
parent | f9a758924918223b4ece9fcabb51e039d9ea5b1f (diff) |
qutebrowser with searx added
22 files changed, 551 insertions, 0 deletions
diff --git a/src/dotfiles/qutebrowser/autoconfig.yml b/src/dotfiles/qutebrowser/autoconfig.yml new file mode 100755 index 0000000..92b68a1 --- /dev/null +++ b/src/dotfiles/qutebrowser/autoconfig.yml @@ -0,0 +1,25 @@ +# If a config.py file exists, this file is ignored unless it's explicitly loaded +# via config.load_autoconfig(). For more information, see: +# https://github.com/qutebrowser/qutebrowser/blob/main/doc/help/configuring.asciidoc#loading-autoconfigyml +# DO NOT edit this file by hand, qutebrowser will overwrite it. +# Instead, create a config.py - see :help for details. + +config_version: 2 +settings: + content.notifications.enabled: + https://mail.tutanota.com: false + content.register_protocol_handler: + https://mail.tutanota.com#url=%25s: false + statusbar.show: + global: in-mode + tabs.show: + global: multiple + url.default_page: + global: ~/.config/qutebrowser/startpage/index.html + url.open_base_url: + global: true + url.searchengines: + global: + DEFAULT: http://priv.au/search?q={}&language=en&time_range=&safesearch=0&categories=general + url.start_pages: + global: ~/.config/qutebrowser/startpage/index.html diff --git a/src/dotfiles/qutebrowser/bookmarks/urls b/src/dotfiles/qutebrowser/bookmarks/urls new file mode 100755 index 0000000..0711a66 --- /dev/null +++ b/src/dotfiles/qutebrowser/bookmarks/urls @@ -0,0 +1,2 @@ +yewtu.be +onion.tube diff --git a/src/dotfiles/qutebrowser/config.py b/src/dotfiles/qutebrowser/config.py new file mode 100755 index 0000000..3fd5774 --- /dev/null +++ b/src/dotfiles/qutebrowser/config.py @@ -0,0 +1,303 @@ +# base16-qutebrowser (https://github.com/theova/base16-qutebrowser) +# Scheme name: Gruvbox dark, medium +# Scheme author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +# Template author: theova +# Commentary: Tinted Theming: (https://github.com/tinted-theming) + +base00 = "#282828" +base01 = "#3c3836" +base02 = "#504945" +base03 = "#665c54" +base04 = "#bdae93" +base05 = "#d5c4a1" +base06 = "#ebdbb2" +base07 = "#fbf1c7" +base08 = "#fb4934" +base09 = "#fe8019" +base0A = "#fabd2f" +base0B = "#b8bb26" +base0C = "#8ec07c" +base0D = "#83a598" +base0E = "#d3869b" +base0F = "#d65d0e" + +# set qutebrowser colors + +# 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. +c.colors.completion.fg = base05 + +# Background color of the completion widget for odd rows. +c.colors.completion.odd.bg = base01 + +# Background color of the completion widget for even rows. +c.colors.completion.even.bg = base00 + +# Foreground color of completion widget category headers. +c.colors.completion.category.fg = base0A + +# Background color of the completion widget category headers. +c.colors.completion.category.bg = base00 + +# Top border color of the completion widget category headers. +c.colors.completion.category.border.top = base00 + +# Bottom border color of the completion widget category headers. +c.colors.completion.category.border.bottom = base00 + +# Foreground color of the selected completion item. +c.colors.completion.item.selected.fg = base05 + +# Background color of the selected completion item. +c.colors.completion.item.selected.bg = base02 + +# Top border color of the selected completion item. +c.colors.completion.item.selected.border.top = base02 + +# Bottom border color of the selected completion item. +c.colors.completion.item.selected.border.bottom = base02 + +# Foreground color of the matched text in the selected completion item. +c.colors.completion.item.selected.match.fg = base0B + +# Foreground color of the matched text in the completion. +c.colors.completion.match.fg = base0B + +# Color of the scrollbar handle in the completion view. +c.colors.completion.scrollbar.fg = base05 + +# Color of the scrollbar in the completion view. +c.colors.completion.scrollbar.bg = base00 + +# Background color of disabled items in the context menu. +c.colors.contextmenu.disabled.bg = base01 + +# Foreground color of disabled items in the context menu. +c.colors.contextmenu.disabled.fg = base04 + +# Background color of the context menu. If set to null, the Qt default is used. +c.colors.contextmenu.menu.bg = base00 + +# Foreground color of the context menu. If set to null, the Qt default is used. +c.colors.contextmenu.menu.fg = base05 + +# Background color of the context menu’s selected item. If set to null, the Qt default is used. +c.colors.contextmenu.selected.bg = base02 + +#Foreground color of the context menu’s selected item. If set to null, the Qt default is used. +c.colors.contextmenu.selected.fg = base05 + +# Background color for the download bar. +c.colors.downloads.bar.bg = base00 + +# Color gradient start for download text. +c.colors.downloads.start.fg = base00 + +# Color gradient start for download backgrounds. +c.colors.downloads.start.bg = base0D + +# Color gradient end for download text. +c.colors.downloads.stop.fg = base00 + +# Color gradient stop for download backgrounds. +c.colors.downloads.stop.bg = base0C + +# Foreground color for downloads with errors. +c.colors.downloads.error.fg = base08 + +# Font color for hints. +c.colors.hints.fg = base00 + +# Background color for hints. Note that you can use a `rgba(...)` value +# for transparency. +c.colors.hints.bg = base0A + +# Font color for the matched part of hints. +c.colors.hints.match.fg = base05 + +# Text color for the keyhint widget. +c.colors.keyhint.fg = base05 + +# Highlight color for keys to complete the current keychain. +c.colors.keyhint.suffix.fg = base05 + +# Background color of the keyhint widget. +c.colors.keyhint.bg = base00 + +# Foreground color of an error message. +c.colors.messages.error.fg = base00 + +# Background color of an error message. +c.colors.messages.error.bg = base08 + +# Border color of an error message. +c.colors.messages.error.border = base08 + +# Foreground color of a warning message. +c.colors.messages.warning.fg = base00 + +# Background color of a warning message. +c.colors.messages.warning.bg = base0E + +# Border color of a warning message. +c.colors.messages.warning.border = base0E + +# Foreground color of an info message. +c.colors.messages.info.fg = base05 + +# Background color of an info message. +c.colors.messages.info.bg = base00 + +# Border color of an info message. +c.colors.messages.info.border = base00 + +# Foreground color for prompts. +c.colors.prompts.fg = base05 + +# Border used around UI elements in prompts. +c.colors.prompts.border = base00 + +# Background color for prompts. +c.colors.prompts.bg = base00 + +# Background color for the selected item in filename prompts. +c.colors.prompts.selected.bg = base02 + +# Foreground color for the selected item in filename prompts. +c.colors.prompts.selected.fg = base05 + +# Foreground color of the statusbar. +c.colors.statusbar.normal.fg = base0B + +# Background color of the statusbar. +c.colors.statusbar.normal.bg = base00 + +# Foreground color of the statusbar in insert mode. +c.colors.statusbar.insert.fg = base00 + +# Background color of the statusbar in insert mode. +c.colors.statusbar.insert.bg = base0D + +# Foreground color of the statusbar in passthrough mode. +c.colors.statusbar.passthrough.fg = base00 + +# Background color of the statusbar in passthrough mode. +c.colors.statusbar.passthrough.bg = base0C + +# Foreground color of the statusbar in private browsing mode. +c.colors.statusbar.private.fg = base00 + +# Background color of the statusbar in private browsing mode. +c.colors.statusbar.private.bg = base01 + +# Foreground color of the statusbar in command mode. +c.colors.statusbar.command.fg = base05 + +# Background color of the statusbar in command mode. +c.colors.statusbar.command.bg = base00 + +# Foreground color of the statusbar in private browsing + command mode. +c.colors.statusbar.command.private.fg = base05 + +# Background color of the statusbar in private browsing + command mode. +c.colors.statusbar.command.private.bg = base00 + +# Foreground color of the statusbar in caret mode. +c.colors.statusbar.caret.fg = base00 + +# Background color of the statusbar in caret mode. +c.colors.statusbar.caret.bg = base0E + +# Foreground color of the statusbar in caret mode with a selection. +c.colors.statusbar.caret.selection.fg = base00 + +# Background color of the statusbar in caret mode with a selection. +c.colors.statusbar.caret.selection.bg = base0D + +# Background color of the progress bar. +c.colors.statusbar.progress.bg = base0D + +# Default foreground color of the URL in the statusbar. +c.colors.statusbar.url.fg = base05 + +# Foreground color of the URL in the statusbar on error. +c.colors.statusbar.url.error.fg = base08 + +# Foreground color of the URL in the statusbar for hovered links. +c.colors.statusbar.url.hover.fg = base05 + +# Foreground color of the URL in the statusbar on successful load +# (http). +c.colors.statusbar.url.success.http.fg = base0C + +# Foreground color of the URL in the statusbar on successful load +# (https). +c.colors.statusbar.url.success.https.fg = base0B + +# Foreground color of the URL in the statusbar when there's a warning. +c.colors.statusbar.url.warn.fg = base0E + +# Background color of the tab bar. +c.colors.tabs.bar.bg = base00 + +# Color gradient start for the tab indicator. +c.colors.tabs.indicator.start = base0D + +# Color gradient end for the tab indicator. +c.colors.tabs.indicator.stop = base0C + +# Color for the tab indicator on errors. +c.colors.tabs.indicator.error = base08 + +# Foreground color of unselected odd tabs. +c.colors.tabs.odd.fg = base05 + +# Background color of unselected odd tabs. +c.colors.tabs.odd.bg = base01 + +# Foreground color of unselected even tabs. +c.colors.tabs.even.fg = base05 + +# Background color of unselected even tabs. +c.colors.tabs.even.bg = base00 + +# Background color of pinned unselected even tabs. +c.colors.tabs.pinned.even.bg = base0C + +# Foreground color of pinned unselected even tabs. +c.colors.tabs.pinned.even.fg = base07 + +# Background color of pinned unselected odd tabs. +c.colors.tabs.pinned.odd.bg = base0B + +# Foreground color of pinned unselected odd tabs. +c.colors.tabs.pinned.odd.fg = base07 + +# Background color of pinned selected even tabs. +c.colors.tabs.pinned.selected.even.bg = base02 + +# Foreground color of pinned selected even tabs. +c.colors.tabs.pinned.selected.even.fg = base05 + +# Background color of pinned selected odd tabs. +c.colors.tabs.pinned.selected.odd.bg = base02 + +# Foreground color of pinned selected odd tabs. +c.colors.tabs.pinned.selected.odd.fg = base05 + +# Foreground color of selected odd tabs. +c.colors.tabs.selected.odd.fg = base05 + +# Background color of selected odd tabs. +c.colors.tabs.selected.odd.bg = base02 + +# Foreground color of selected even tabs. +c.colors.tabs.selected.even.fg = base05 + +# Background color of selected even tabs. +c.colors.tabs.selected.even.bg = base02 + +# Background color for webpages if unset (or empty to use the theme's +# color). +# c.colors.webpage.bg = base00 +config.load_autoconfig() diff --git a/src/dotfiles/qutebrowser/startpage/.gitignore b/src/dotfiles/qutebrowser/startpage/.gitignore new file mode 100755 index 0000000..4e70105 --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/.gitignore @@ -0,0 +1 @@ +web-ext*/*
\ No newline at end of file diff --git a/src/dotfiles/qutebrowser/startpage/css/main.css b/src/dotfiles/qutebrowser/startpage/css/main.css new file mode 100755 index 0000000..aa46c6b --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/css/main.css @@ -0,0 +1,204 @@ +@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap"); +.roboto { + font-family: "Roboto", sans-serif; } + +@font-face { + font-family: "JetBrains Mono"; + src: url("../fonts/woff/JetBrainsMono-Regular.woff") format("woff"), url("../fonts/woff2/JetBrainsMono-Regular.woff2") format("woff2"); } + +.jetbrains-mono, body { + font-family: "JetBrains Mono"; } + +body { + height: 97.5vh; + display: flex; + align-items: center; + justify-content: center; + background: #212121; + color: #fff; } + @media screen and (max-height: 501px) { + body { + display: block; + height: 100vh; } } +.main { + width: 100%; + text-align: center; } + .main #date h2 { + padding-top: 15px; + display: inline-block; + vertical-align: top; } + .main #date-text, + .main #weather-text { + color: #d9d9d9; } + .main #message-text { + font-size: 23px; } + .main #search-bar { + width: 50%; + margin: 0 auto 50px auto; + height: 45px; + padding-top: 35px; + position: relative; + display: inline-block; } + .main #search-bar #search-bar-input { + height: 50px; + width: 100%; + background: #2e2e2e; + box-shadow: none; + border: none; + text-align: center; + border-radius: 6px; + outline: none; + padding: 7px 14px; + font-size: 18px; + color: #fff; + box-sizing: border-box; } + .main #search-bar #search-bar-input:focus { + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); } + .main #search-bar .autocomplete-items-container { + position: absolute; + top: 100%; + left: 0; + right: 0; + z-index: 99; + border-radius: 6px; + background: #2e2e2e; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); } + .main #search-bar .autocomplete-items-container .autocomplete-item { + width: 100%; + background: #2e2e2e; + box-shadow: none; + border: none; + text-align: center; + outline: none; + padding: 7px 14px; + font-size: 18px; + color: #fff; + box-sizing: border-box; + z-index: -1; + cursor: pointer; } + .main #search-bar .autocomplete-items-container .autocomplete-item:hover { + background: #3b3b3b; } + .main #search-bar .autocomplete-items-container .autocomplete-active { + background: #353535; } + @media only screen and (max-width: 791px) { + .main #search-bar { + width: 65%; } } + .main #other-content { + margin: 40px auto; + padding: 10px 0; } + .main #other-content .sqr { + vertical-align: top; + display: inline-block; + margin-left: 5px; + margin-right: 5px; + width: 170px; + background: #2e2e2e; + padding: 15px 15px; + border-radius: 6px; + min-height: 150px; + margin-top: 10px; } + .main #other-content .sqr h4 { + font-size: 18px; + margin: 15px; } + .main #other-content .sqr h4 a { + color: inherit; + font-size: inherit; } + .main #other-content .sqr:hover { + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); } + .main #other-content .sqr a { + color: #9e9e9e; + font-size: 16px; + transition: 0.1s ease-in; + display: block; + text-decoration: none; + line-height: 22px; } + .main #other-content .sqr a:hover { + color: #fff; + text-decoration: none; + transition: 0.1s ease-in; } + .main #other-content .media h4, + .main #other-content .media a:hover { + color: #4dd0e1; } + .main #other-content .work h4, + .main #other-content .work a:hover { + color: #f06292; } + .main #other-content .social h4, + .main #other-content .social a:hover { + color: #fff176; } + .main #other-content .others h4, + .main #other-content .others a:hover { + color: #81c784; } + .main #other-content .funky h4, + .main #other-content .funky a:hover { + color: #4db6ac; } + .main #other-content .purple h4, + .main #other-content .purple a:hover { + color: #9575cd; } + .main #other-content .upvoty h4, + .main #other-content .upvoty a:hover { + color: #ff8a65; } + .main #other-content .indigo h4, + .main #other-content .indigo a:hover { + color: #7986cb; } + .main #other-content .foxxy h4, + .main #other-content .foxxy a:hover { + color: #a1887f; } + +.settings-modal { + display: none; + position: fixed; + z-index: 3; + width: 80vw; + height: 80vh; + overflow: auto; + background: #fff; + color: #212121; + padding: 15px; } + .settings-modal .modal-content { + width: 100%; + height: 100%; } + .settings-modal .close { + color: #aaa; + float: right; + font-size: 28px; + font-weight: bold; } + .settings-modal .close:hover, .settings-modal .close:focus { + color: black; + text-decoration: none; + cursor: pointer; } + .settings-modal .release { + color: #6b7280; } + .settings-modal .update--available { + visibility: hidden; + color: #6b7280; } + .settings-modal .backup-import { + display: flex; + align-items: center; } + .settings-modal .backup-import .btn { + box-shadow: none; + border: none; + text-align: center; + border-radius: 5px; + padding: 4px 16px; + cursor: pointer; + font-size: medium; + color: white; + background-color: #37474F; } + .settings-modal .backup-import .import-btn { + margin-left: 10px; } + +#settings-cog { + width: 23px; + height: 23px; + position: absolute; + bottom: 25px; + right: 25px; + transition: 2s ease-in; + display: none; } + #settings-cog:hover .cog { + fill: white; + stroke: white; + transition: 2s ease-in; } diff --git a/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Bold-Italic.woff b/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Bold-Italic.woff Binary files differnew file mode 100755 index 0000000..0ec4bff --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Bold-Italic.woff diff --git a/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Bold.woff b/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Bold.woff Binary files differnew file mode 100755 index 0000000..dd2e280 --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Bold.woff diff --git a/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-ExtraBold-Italic.woff b/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-ExtraBold-Italic.woff Binary files differnew file mode 100755 index 0000000..8da8fe0 --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-ExtraBold-Italic.woff diff --git a/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-ExtraBold.woff b/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-ExtraBold.woff Binary files differnew file mode 100755 index 0000000..4603980 --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-ExtraBold.woff diff --git a/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Italic.woff b/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Italic.woff Binary files differnew file mode 100755 index 0000000..b3172f2 --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Italic.woff diff --git a/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Medium-Italic.woff b/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Medium-Italic.woff Binary files differnew file mode 100755 index 0000000..5e95753 --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Medium-Italic.woff diff --git a/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Medium.woff b/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Medium.woff Binary files differnew file mode 100755 index 0000000..18ad34c --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Medium.woff diff --git a/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Regular.woff b/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Regular.woff Binary files differnew file mode 100755 index 0000000..69b14ea --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/fonts/woff/JetBrainsMono-Regular.woff diff --git a/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Bold-Italic.woff2 b/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Bold-Italic.woff2 Binary files differnew file mode 100755 index 0000000..34b5c69 --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Bold-Italic.woff2 diff --git a/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Bold.woff2 b/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Bold.woff2 Binary files differnew file mode 100755 index 0000000..84a008a --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Bold.woff2 diff --git a/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-ExtraBold-Italic.woff2 b/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-ExtraBold-Italic.woff2 Binary files differnew file mode 100755 index 0000000..09865c5 --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-ExtraBold-Italic.woff2 diff --git a/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-ExtraBold.woff2 b/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-ExtraBold.woff2 Binary files differnew file mode 100755 index 0000000..a8e7702 --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-ExtraBold.woff2 diff --git a/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Italic.woff2 b/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Italic.woff2 Binary files differnew file mode 100755 index 0000000..85fd468 --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Italic.woff2 diff --git a/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Medium-Italic.woff2 b/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Medium-Italic.woff2 Binary files differnew file mode 100755 index 0000000..f22fa8b --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Medium-Italic.woff2 diff --git a/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Medium.woff2 b/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Medium.woff2 Binary files differnew file mode 100755 index 0000000..45a63c1 --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Medium.woff2 diff --git a/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Regular.woff2 b/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Regular.woff2 Binary files differnew file mode 100755 index 0000000..d5b94cb --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Regular.woff2 diff --git a/src/dotfiles/qutebrowser/startpage/index.html b/src/dotfiles/qutebrowser/startpage/index.html new file mode 100755 index 0000000..3f7a84c --- /dev/null +++ b/src/dotfiles/qutebrowser/startpage/index.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>startpage</title> + <!--Custom CSS--> + <link rel="stylesheet" href="css/main.css"> +</head> +<body> + </div> + <div id="main" class="main"> + <div id="message"> + <h1 id="message-text">Qutebrowser</h1> + </div> + </body> +</html> |