我有一台 HP G62 笔记本电脑和一台 NEC AccuSync LCD73v 显示器,我通过 VGA 连接。我经常使用终端,因此在启动时,ubuntu 会自动启动 4 个 Xterms。有没有办法在指定位置启动它们?(查看图片以了解更多说明)
启动时:
我想要的是:
答案1
gnome-terminal --geometry=AxB+C+D
where,
AxB is the dimension of the terminal
C is the column number of the pixel in screen.
D is the row number of the pixel in screen.
这样12x12+100+200
将创建一个 12x12 大小的终端,其左上角位于像素 (100,200)。
如果第一个屏幕的宽度为 1280,则将 C 的值设置为 1280 将在第 2 个屏幕中创建终端。