Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 ssh 进入我的 pi
ssh pi@rpi.local -Y
为了传输一个 X 窗口。窗口打开,但离屏幕非常远,我必须随机调整屏幕大小多次以使其可见。
问题:是否可以自动移动窗口
或者:我在哪里设置标准 X 窗口位置/偏移量?
使用-几何:
xterm -geometry +50+100
..将窗口定位在距左侧 50 像素和距顶部 100 像素的位置。要指定大小:
xterm -geometry 400x300
...或结合:
xterm -geometry 400x300+50+100