buncha stuff

This commit is contained in:
2022-06-15 21:03:04 -07:00
parent 4d44883ee5
commit 78024fdabd
21 changed files with 3529 additions and 35 deletions

View File

@@ -0,0 +1,22 @@
# 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/master/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.javascript.enabled:
'*://*.127.0.0.1/*': true
'*://*.crontab.guru/*': true
'*://*.framatube.org/*': true
'*://*.github.com/*': true
'*://*.onlinebanking.becu.org/*': true
'*://*.protesilaos.com/*': true
'*://*.register.be.xfinity.com/*': false
'*://*.seattle.craigslist.org/*': true
'*://*.vid.puffyan.us/*': true
'*://*.www.astound.com/*': true
'*://*.www.knoll.com/*': true
'*://*.www.startpage.com/*': true
'*://*.www.xfinity.com/*': true

View File

@@ -0,0 +1 @@
https://drewdevault.com/ Drew DeVault's blog

View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python3
config.load_autoconfig()
c.content.javascript.enabled = False
#c.content.user_stylesheets = [ "stylesheet.css" ]
c.downloads.location.directory = "~/downloads"
c.editor.command = [ "alacritty", "-e", "vim", "{}" ]
c.editor.encoding = "utf-8"
c.url.searchengines = {
"DEFAULT" : "https://search.brave.com/search?q={}",
}
c.url.start_pages = [ "https://search.brave.com" ]
config.bind('<Ctrl-Shift-y>', 'hint links spawn --detach mpv --force-window yes {hint-url}')

File diff suppressed because it is too large Load Diff

View File

File diff suppressed because it is too large Load Diff