https://github.com/raulil/selain
Modal web browser experiment
https://github.com/raulil/selain
vi-like web-browser webkit webkit-browser
Last synced: 12 days ago
JSON representation
Modal web browser experiment
- Host: GitHub
- URL: https://github.com/raulil/selain
- Owner: RauliL
- License: bsd-2-clause
- Created: 2019-01-13T15:40:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-18T17:01:31.000Z (over 4 years ago)
- Last Synced: 2025-03-27T18:13:15.695Z (29 days ago)
- Topics: vi-like, web-browser, webkit, webkit-browser
- Language: C++
- Homepage:
- Size: 156 KB
- Stars: 10
- Watchers: 2
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# selain
Experiment on how to build a browser UI with Vi like keyboard bindings that
uses [WebKit] as it's engine.## How to compile
Selain requires these two libraries to be installed:
- [GTKmm]
- [WebKitGTK]You also need [CMake] to compile this application. On Ubuntu, all of these can
be installed with following command:```bash
$ sudo apt install libgtkmm-3.0-dev libwebkit2gtk-4.0-dev cmake build-essential
```After dependencies have been installed, you can compile the application like
this:```bash
$ mkdir build
$ cd build
$ cmake ..
$ make
```After this, you can run the application by executing `selain` binary found in
the `build` directory, or you can alternatively install it to your system with
`sudo make install`.[WebKit]: https://webkit.org/
[GTKmm]: https://www.gtkmm.org/
[WebKitGTK]: https://webkitgtk.org/
[CMake]: https://cmake.org/