From 1f5431a22e86901157359245fe87e84b4e029ed2 Mon Sep 17 00:00:00 2001 From: Luke Date: Mon, 22 Jan 2018 14:38:33 -0700 Subject: [PATCH] qutebrowser fixes --- .config/qutebrowser/config.py | 2 +- .config/startpage/startpage.html | 18 ++++++++++++++++++ .config/startpage/style.css | 24 ++++++++++++++++++++++++ 3 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 .config/startpage/startpage.html create mode 100644 .config/startpage/style.css diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index 14eb90d..4ecfc2b 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -1000,7 +1000,7 @@ c.qt.force_platform = None ## QtWebEngine to work with Nouveau drivers. This setting requires a ## restart. ## Type: Bool -c.qt.force_software_rendering = False +c.qt.force_software_rendering = True ## Show a scrollbar. ## Type: Bool diff --git a/.config/startpage/startpage.html b/.config/startpage/startpage.html new file mode 100644 index 0000000..e6fb443 --- /dev/null +++ b/.config/startpage/startpage.html @@ -0,0 +1,18 @@ + + + + + + + + Start Page + + +
+ +
+

Welcome.

+
+
+ + diff --git a/.config/startpage/style.css b/.config/startpage/style.css new file mode 100644 index 0000000..606c962 --- /dev/null +++ b/.config/startpage/style.css @@ -0,0 +1,24 @@ +body { + color: #ddd; + background: url("../wall.png") no-repeat center center fixed; + -webkit-background-size: cover; + -moz-background-size: cover; + -o-background-size: cover; + background-size: cover; +} + +#middle{ + border-radius: 24px; + float: left; + display: inline-block; + width: 161.803px; + height: 100px; + position: absolute; + top: 50%; + bottom: 50%; + left: 0; + right: 0; + margin: auto; + text-align: center; + background-color: rgba(20, 20, 20, 0.9); +}