qtwayland

get the list of active windows in wayland weston

我怕爱的太早我们不能终老 提交于 2020-01-01 05:11:07
问题 How to get the list of active windows in wayland.. ie, in my window one terminal is active and a calculator is also active, I need to get the details of these windows in terminal , how can I get it ? 回答1: Basically, you can't. The main idea of the Wayland protocol is that a client doesn't know anything about the rest of the world. You can, however, modify your compositor so that it will record the information you need about every windows in it and use those informations at will. Modifying a

Is it possible to remove Weston toolbar?

人盡茶涼 提交于 2019-12-11 13:34:41
问题 Is it possible to have weston run without the toolbar at the top and change the background to black. So that when i have a script in init.d it calls weston first than my qt5 app? such as: weston & /home/root/app -platform wayland 回答1: you can change the background settings in weston.ini. For the toolbar you just have to return 0 in want_panel function in clients/desktop_shell.c 回答2: You can also just add panel-location string weston.ini [shell] section like this : [shell] panel-location=""

How to build qtwayland?

我与影子孤独终老i 提交于 2019-12-07 16:08:35
问题 I spent whole day trying to use QtWayland.Compositor 1.0 in Qt creator. I have followed all the steps from there https://wiki.qt.io/QtWayland but I get the following error. I don't know what does it mean, that is my first contact with linux. I have the newest linux mint on a vm. $ sudo make install cd src/ && ( test -e Makefile || /usr/lib/x86_64-linux-gnu/qt5/bin/qmake /home/emil/wayland/qtwayland/src/src.pro -o Makefile ) && make -f Makefile install make[1]: Entering directory '/home/emil

How to build qtwayland?

▼魔方 西西 提交于 2019-12-05 19:29:13
I spent whole day trying to use QtWayland.Compositor 1.0 in Qt creator. I have followed all the steps from there https://wiki.qt.io/QtWayland but I get the following error. I don't know what does it mean, that is my first contact with linux. I have the newest linux mint on a vm. $ sudo make install cd src/ && ( test -e Makefile || /usr/lib/x86_64-linux-gnu/qt5/bin/qmake /home/emil/wayland/qtwayland/src/src.pro -o Makefile ) && make -f Makefile install make[1]: Entering directory '/home/emil/wayland/qtwayland/src' make[1]: Nothing to be done for 'install'. make[1]: Leaving directory '/home/emil

get the list of active windows in wayland weston

[亡魂溺海] 提交于 2019-12-03 13:42:57
How to get the list of active windows in wayland.. ie, in my window one terminal is active and a calculator is also active, I need to get the details of these windows in terminal , how can I get it ? Basically, you can't. The main idea of the Wayland protocol is that a client doesn't know anything about the rest of the world. You can, however, modify your compositor so that it will record the information you need about every windows in it and use those informations at will. Modifying a compositor, however, is a bit complex for a SO answer (and beyond my knowledge) so I guess you'll have to