1# Falkon
2
3Falkon is a KDE web browser. It uses QtWebEngine rendering engine.
4
5![image](https://www.falkon.org/images/screenshot.png)
6
7## Downloads
8
9Falkon downloads are available from [homepage](https://www.falkon.org/download/).
10
11## Building
12
13```sh
14mkdir build && cd build
15cmake ..
16make && make install
17```
18
19### Install to custom prefix
20
21When installing Falkon to custom prefix, you may need to adjust `XDG_DATA_DIRS` environment variable.
22
23```sh
24# Build
25cmake -DCMAKE_INSTALL_PREFIX=$HOME/falkon
26
27# Run
28export XDG_DATA_DIRS="$HOME/falkon/share:$XDG_DATA_DIRS"
29$HOME/falkon/bin/falkon
30```
31
32## Contributing
33
34Want to contribute? Great!
35
36[KDE Community Wiki](https://community.kde.org/Get_Involved)
37
38Code review is done on [Phabricator](https://community.kde.org/Infrastructure/Phabricator). When sending patches, add Falkon project (`#Falkon`) as a reviewer.
39
40#### Reporting bugs
41
42You can report any bugs or feature request in KDE [bugzilla](https://bugs.kde.org/enter_bug.cgi?product=Falkon). Before reporting, please make sure your issue isn’t already reported ([open issues](https://bugs.kde.org/buglist.cgi?bug_status=UNCONFIRMED&bug_status=CONFIRMED&bug_status=ASSIGNED&bug_status=REOPENED&component=extensions&component=general&list_id=1597725&product=Falkon)).
43
44#### Contact
45
46You can get in contact with developers using [mailing list](https://mail.kde.org/mailman/listinfo/falkon) or __IRC__ `#falkon` at `irc.libera.chat`.
47