可以删除 Weston 工具栏吗?

问题描述 投票:0回答:7

Weston desktop with toolbar

是否可以让weston在没有顶部工具栏的情况下运行并将背景更改为黑色。这样,当我在 init.d 中有一个脚本时,它首先调用 weston 而不是我的 qt5 应用程序?如:

weston &
/home/root/app -platform wayland
qt qt5 wayland qtwayland
7个回答
6
投票

添加

panel-location
字符串
weston.ini
[shell]
部分,如下所示:

[shell]
panel-location = ""

3
投票

我也有同样的问题。这是解决方案:

打开:/etc/xdg/weston/weston.ini

添加:

panel-position=none

到此文件

打开终端或调试,输入:

systemctl restart weston

重启


2
投票

运行为

weston --shell="kiosk-shell.so"

Weston 的 kiosk-shell 是一个针对单一应用程序/kiosk 用例的简单 shell。它使所有顶级应用程序窗口全屏显示,并支持定义将哪些应用程序放置在特定输出上。


1
投票

看起来是由启动

shell/modules
时加载的
weston
决定的,默认加载
desktop-shell.so
。您可以参考 weston.iniman page 来尝试更改它。


1
投票

要结合可能的解决方案,只需将以下设置添加到您的 weston.ini 中即可帮助我。

**[shell]
panel-location=""
panel-position=none**

此外,Weston.ini 是根据以下优先顺序选取的:-

$XDG_CONFIG_HOME/weston.ini   (if $XDG_CONFIG_HOME is set)
$HOME/.config/weston.ini      (if $HOME is set)
weston/weston.ini in each
           $XDG_CONFIG_DIR           (if $XDG_CONFIG_DIRS is set)
       /etc/xdg/weston/weston.ini    (if $XDG_CONFIG_DIRS is not set)
       <current dir>/weston.ini      (if no variables were set)

其中环境变量 $HOME 是用户的主目录,$XDG_CONFIG_HOME 是用户特定的配置目录,$XDG_CONFIG_DIRS 是冒号“:”分隔的配置基目录列表,例如 /etc/xdg-foo:/etc/ xdg.


1
投票

我通过修改 /etc/xdg/weston/weston.ini 修复了 weston 版本 9 上的相同问题

面板位置=无


0
投票

您可以在 weston.ini 中更改背景设置。对于工具栏,您只需在clients/desktop_shell.c中的want_panel函数中返回0即可。

© www.soinside.com 2019 - 2024. All rights reserved.