下面是如何在 Gtk3 中做到这一点:
display = Display()
topw = display.create_resource_object('window',
window.get_toplevel().get_window().get_xid())
topw.change_property(display.intern_atom('_NET_WM_STRUT'),
display.intern_atom('CARDINAL'), 32,
[0, 0, bar_size, 0 ],
X.PropModeReplace)
topw.change_property(display.intern_atom('_NET_WM_STRUT_PARTIAL'),
display.intern_atom('CARDINAL'), 32,
[0, 0, bar_size, 0, 0, 0, 0, 0, x, x+width-1, 0, 0],
X.PropModeReplace)
您需要以下导入:
import gi
gi.require_version('Gtk','3.0')
from gi.repository import Gtk, Gdk
import Xlib
from Xlib.display import Display
from Xlib import X
我通过邮件列表确认,正如@ptomato 所说,该函数是不可自省的,这意味着它在 Python 等自省绑定中不可用。
附加信息
您可以在 Ruby 中执行此操作(gtk2 或 gtk3 绑定)。然后,您需要require 'xlib-objects'
从 (a subclass of) 的实例Gtk::Window
:
topw = XlibObj::Window.new(XlibObj::Display.new(':0'),
toplevel.window.xid)
XlibObj::Window::Property.new(topw, '_NET_WM_STRUT').set(
[0, 0, self.height, 0 ],
:CARDINAL)
XlibObj::Window::Property.new(topw, '_NET_WM_STRUT_PARTIAL').set(
[0, 0, self.height, 0, 0, 0, 0, 0, x, x+width-1, 0, 0],
:CARDINAL)
或者,您可以使用xprop
通过system
subshell 来执行此操作:
xid = toplevel.window.xid
system %Q{xprop -id #{xid} -format _NET_WM_STRUT 32c \
-set _NET_WM_STRUT \
"0, 0, #{self.height}, 0"}
system %Q{xprop -id #{xid} -format _NET_WM_STRUT_PARTIAL 32c \
-set _NET_WM_STRUT_PARTIAL \
"0, 0, #{self.height}, 0, 0, 0, 0, 0, #{x}, #{x+width-1}, 0, 0"}
最后,从命令行执行此操作:
$ xprop -id 44040195 -format _NET_WM_STRUT_PARTIAL 32c -set _NET_WM_STRUT_PARTIAL "0, 0, 15, 0, 0, 0, 0, 0, 1600, 3519, 0, 0"
(其中-id 44040195
指定它的窗口;省略用鼠标选择窗口)
要从命令行查看设置:
$ xprop _NET_WM_STRUT_PARTIAL _NET_WM_STRUT