如何从应用程序控制 X11 视口

如何从应用程序控制 X11 视口

假设我们有一个配置为平移模式的 X11 显示器。例如

xrandr --output LVDS1 --mode 1920x1080 --panning 4096x4096

有没有办法从用户应用程序移动可见视口(理想情况下以每秒处理多个视口更新的方式)。

答案1

man xdotool 说它可以获取/设置视口:

   get_desktop_viewport [--shell]
       Report the current viewport's position. If --shell is given, the
       output is friendly to shell eval.

   set_desktop_viewport x y
       some windowmangers only obey requests that align to workspace boundaries

相关内容