aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 28b0481c23dfca2b8841bd4cee2e4a18c3d3d482 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Simple Browser

This is a little browser which depends on the QtWebEngine.

In Contrast to the GtkWebkit the QtWebEngine runs under Chromium and
is lighter and faster and supports more modern websites.

Because of the fact that the Qt library is only provided for C++
this browser is written in c++.

## Keybindings

- <Alt>k : scroll up
- <Alt>j : scroll down
- <Alt>o : open url

## How to enable darkmode

Put this line into your `profile`:
```sh
export QTWEBENGINE_CHROMIUM_FLAGS='--force-dark-mode'

```

## How to enable smooth scrolling
Put this line into your `profile`:
```sh
export QTWEBENGINE_CHROMIUM_FLAGS='--enable-smooth-scrolling'

```