A minimal kiosk-mode web browser built with Qt6 in C++.
Requires Qt6 libraries and CMake.
src/– source codeCMakeLists.txt– build script
Install the required Qt6 packages:
sudo apt update
sudo apt install qt6-base-dev qt6-webengine-dev cmake build-essentialor for Qt5
sudo apt update
sudo apt install libqt5websockets5-dev libqt5webkit5-dev cmake build-essentialRun these commands from the project root:
mkdir build
cd build
cmake .. # or cmake .. -DUSE_QT6=1 or cmake -DCMAKE_BUILD_TYPE=Debug ..
make
./kiosk-browser