-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,28 @@ | ||
# QAdwaitaDecoration | ||
Qt decoration plugin implementing Adwaita-like client-side decorations | ||
Qt decoration plugin implementing Adwaita-like client-side decorations. | ||
|
||
## How to compile | ||
This library uses private Qt headers and will likely not be forward nor | ||
backward compatible. This library will have to be recompiled with every | ||
Qt update. While it can be build using Qt 5, it depends on backported | ||
changes from Qt 6. You can get these [here](https://src.fedoraproject.org/rpms/qt5-qtwayland/blob/rawhide/f/qtwayland-decoration-support-backports-from-qt6.patch). | ||
|
||
Build instructions: | ||
|
||
``` | ||
mkdir build | ||
cd build | ||
cmake [OPTIONS] [-DUSE_QT6=true] .. | ||
make && make install | ||
``` | ||
|
||
## Usage | ||
It can be used by setting the QT_WAYLAND_DECORATION environment variable: | ||
|
||
``` | ||
export QT_WAYLAND_DECORATION=adwaita | ||
``` | ||
|
||
## License | ||
The code is under [LGPL 2.1](https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html) with the "or any later version" clause. | ||
|