linux i3中的浮动dunst通知

zhte4eai  于 2022-12-29  发布在  Linux
关注(0)|答案(1)|浏览(279)

我的问题

我在Ubuntu 22.04下,i3作为窗口管理器,dunst显示通知。
我希望通知是浮动的,但他们在屏幕的顶部,并采取了整个宽度。
您将在通知中找到我的dunst和i3配置的以下部分,以及xprop的输出。
xprop显示通知是一个类为"Dunst"的窗口,但i3没有将其显示为浮动窗口,即使它被配置为类为"Dunst"的窗口也是如此。如何解决这个问题?

我的配置文件

~/.config/dunst/dunstrc

[global]
width = 300
height = 300
origin = top-right
offset = 10x50
scale = 0
title = Dunst
class = Dunst

~/.config/i3/config

for_window [window_role="pop-up"] floating enable
for_window [window_role="task_dialog"] floating enable
for_window [class="Dunst"] floating enable

附加信息

通知上的xprop命令将显示:

_NET_WM_WINDOW_OPACITY(CARDINAL) = 3650722120
_NET_WM_STATE(ATOM) = _NET_WM_STATE_ABOVE
_NET_WM_WINDOW_TYPE(ATOM) = _NET_WM_WINDOW_TYPE_NOTIFICATION, _NET_WM_WINDOW_TYPE_UTILITY
WM_CLASS(STRING) = "Dunst", "Dunst"
_NET_WM_NAME(UTF8_STRING) = "Dunst"
WM_NAME(STRING) = "Dunst"
mwg9r5ms

mwg9r5ms1#

我终于找到了解决方案here
我将我的~/.config/dunst/dunstrc更改为(使用geometry):

[global]
geometry = "300x5-10+50"
title = Dunst
class = Dunst

相关问题