qutebrowser startpage.

This commit is contained in:
Bartek Stalewski 2021-08-23 00:44:48 +02:00
parent aad6f775ba
commit 2dc993d504
2 changed files with 15 additions and 2 deletions

View File

@ -25,8 +25,8 @@ c.scrolling.smooth = True
c.tabs.show = 'multiple'
c.tabs.undo_stack_size = -1
c.tabs.last_close = 'default-page'
c.url.start_pages = ['about:blank']
c.url.default_page = 'about:blank'
c.url.start_pages = [os.path.expanduser("~/.config/qutebrowser/startpage.html")]
c.url.default_page = os.path.expanduser("~/.config/qutebrowser/startpage.html")
c.url.incdec_segments = ['path', 'query']
c.url.yank_ignored_parameters = ['ref', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid']
c.spellcheck.languages = ['en-US', 'pl-PL']

View File

@ -0,0 +1,13 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl" lang="pl">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>[startpage]</title>
</head>
<style>
body { background-color: #161616 }
</style>
</html>