Compare commits
No commits in common. "4e31f03f9412fe0706539bcf2c33405a0936d4a5" and "f1245bc1b5ffa0f5f8e99cbe80d1b61bf0dabc17" have entirely different histories.
4e31f03f94
...
f1245bc1b5
@ -2,7 +2,7 @@ config.load_autoconfig()
|
||||
|
||||
# Colors
|
||||
|
||||
c.colors.webpage.bg = "#444444"
|
||||
c.colors.webpage.bg = "black"
|
||||
c.colors.completion.category.bg = "#111111"
|
||||
c.colors.completion.even.bg = "black"
|
||||
c.colors.statusbar.private.bg = "black"
|
||||
@ -10,55 +10,34 @@ c.colors.statusbar.command.private.bg = "black"
|
||||
c.colors.hints.bg = "black"
|
||||
c.colors.hints.fg = "white"
|
||||
c.colors.tabs.bar.bg = "black"
|
||||
|
||||
c.colors.tabs.even.bg = "#000000"
|
||||
c.colors.tabs.odd.bg = "#000000"
|
||||
c.colors.tabs.selected.even.bg = "#333333"
|
||||
c.colors.tabs.selected.odd.bg = "#444444"
|
||||
|
||||
c.colors.webpage.darkmode.algorithm = "lightness-hsl"
|
||||
c.colors.webpage.darkmode.contrast = 0.5
|
||||
c.colors.webpage.darkmode.policy.images = "smart"
|
||||
c.colors.webpage.darkmode.grayscale.images = 0.5
|
||||
|
||||
c.colors.prompts.bg = "black"
|
||||
c.colors.prompts.border = "1px solid white"
|
||||
c.prompt.radius = 0
|
||||
|
||||
# Fonts
|
||||
|
||||
c.fonts.default_family = "Terminus"
|
||||
c.fonts.prompts = "default_size default_family"
|
||||
|
||||
config.bind('td', 'config-cycle colors.webpage.darkmode.enabled true false;; restart')
|
||||
c.colors.webpage.darkmode.contrast = 0.1
|
||||
c.colors.webpage.darkmode.enabled = True
|
||||
c.window.transparent = True
|
||||
|
||||
# General settings
|
||||
|
||||
c.scrolling.smooth = False
|
||||
c.url.default_page = "~/.config/qutebrowser/homepage.html"
|
||||
c.url.start_pages = "~/.config/qutebrowser/homepage.html"
|
||||
c.url.default_page = "about:blank"
|
||||
c.url.start_pages = "about:blank"
|
||||
c.url.searchengines = {"DEFAULT":"https://searx.be/search?q={}"}
|
||||
c.downloads.location.directory = "~/quar/"
|
||||
|
||||
c.zoom.default = "90%"
|
||||
|
||||
# Downloads
|
||||
|
||||
c.downloads.remove_finished = 1000
|
||||
|
||||
# Bar settings
|
||||
|
||||
c.tabs.max_width = 300
|
||||
c.tabs.favicons.show = "never"
|
||||
c.tabs.max_width = 100
|
||||
c.tabs.position = "bottom"
|
||||
c.statusbar.show = "in-mode"
|
||||
c.statusbar.widgets = [ "keypress", "progress" ]
|
||||
|
||||
# Hints
|
||||
|
||||
c.hints.border = "1px dotted white"
|
||||
c.hints.radius = 10
|
||||
c.hints.chars = "asdfghjklweu"
|
||||
c.hints.chars = "asdfhjkl"
|
||||
|
||||
# Privacy settings
|
||||
|
||||
@ -92,7 +71,3 @@ c.content.webgl = False
|
||||
|
||||
# Bind '#' key to scroll to anchor (sections in wiki pages, for example)
|
||||
config.bind("#", "set-cmd-text -s :scroll-to-anchor ")
|
||||
# Get image URL quickly
|
||||
config.bind(";I", "hint images yank")
|
||||
# This overrides pP because I don't use primary clip
|
||||
config.bind("p", "open -t {clipboard}")
|
||||
|
@ -1,6 +0,0 @@
|
||||
#!/bin/sh
|
||||
# Copy a bookmark to clipboard.
|
||||
# Requires fzf, xsel
|
||||
# Bookmarks are stored in ~/dox/not/bk.txt, commented with #
|
||||
|
||||
cat ~/dox/not/bk.txt | fzf | awk -F'#' '{print $1}' | xsel -ib
|
Loading…
x
Reference in New Issue
Block a user