如何使用 dbus-运行-session 设置屏幕大小
How to setup the screen size with dbus-run-session
当我调试 gnome shell 扩展时,gjs official documentation 告诉我使用此命令测试新扩展。
dbus-run-session -- gnome-shell --nested --wayland
但是我有一个 800x600
屏幕,那么如何更改屏幕大小。 man dbus-run-session
没有帮助。
可以通过传递变量来实现
env MUTTER_DEBUG_DUMMY_MODE_SPECS=1024x768 \
dbus-run-session -- gnome-shell --nested --wayland
如描述here
但是我没有找到如何定位嵌套的 wayland window
当我调试 gnome shell 扩展时,gjs official documentation 告诉我使用此命令测试新扩展。
dbus-run-session -- gnome-shell --nested --wayland
但是我有一个 800x600
屏幕,那么如何更改屏幕大小。 man dbus-run-session
没有帮助。
可以通过传递变量来实现
env MUTTER_DEBUG_DUMMY_MODE_SPECS=1024x768 \
dbus-run-session -- gnome-shell --nested --wayland
如描述here
但是我没有找到如何定位嵌套的 wayland window