我想强制终结者在屏幕的左上角打开。当我保存布局时,我正确地定位了窗口。但是,每当我在计算机重启时打开终结器时,窗口就会位于顶部附近,离左边大约1.5英寸。
我一直在搞乱配置文件,但无法弄清楚'位置'参数。例如,在[[[child0]]]
下:
position = 36:32
并在[[[child1]]]
下:
position = 834
任何人都可以解释如何自定义这些参数吗?
系统信息:
终结者/配置:
[global_config]
always_split_with_profile = True
suppress_multiple_term_dialog = True
title_transmit_bg_color = "#8ae234"
[keybindings]
[layouts]
[[default]]
[[[child0]]]
fullscreen = False
last_active_term = a69b1a79-eb9d-4c15-ac27-0502efc4c4f7
last_active_window = True
maximised = False
order = 0
parent = ""
position = 36:32
size = 808, 1014
title = bp@bpenner: ~
type = Window
[[[child1]]]
order = 0
parent = child0
position = 834
ratio = 0.826560951437
type = VPaned
[[[terminal2]]]
order = 0
parent = child1
profile = BP
type = Terminal
uuid = a69b1a79-eb9d-4c15-ac27-0502efc4c4f7
[[[terminal3]]]
order = 1
parent = child1
profile = BP
type = Terminal
uuid = 454d7873-3e55-49a4-af8c-6456f99d5e1e
[plugins]
[profiles]
[[default]]
cursor_color = "#aaaaaa"
答案 0 :(得分:0)
有几件事可以尝试。
以下对我有用:
打开终结器,然后根据需要调整其窗口的大小和位置。
在命令行区域中,右键单击然后选择首选项。
在“ 布局”标签中,展开类型 / 名称列表,选择 Terminal1 ,然后点击保存。
退出“ <首选项” 对话框,然后关闭并重新打开“终结者”。
可用于配置许多应用程序的显示属性的另一种方法是将--geometry=
参数添加到Terminator命令行。
键入man x
以显示X窗口系统的手册页。
向下滚动到几何体规格。
答案 1 :(得分:0)
我相信您的配置文件缺少第一个[[[window0]]]条目,该条目位于我的默认设置的[[[child]]]条目之前。
这是我的配置设置,其中第一个窗口在位置y = 100和x = 100像素处从左上角开始,其大小为1000 X 700像素。 (请注意进行这些输入所需的其他格式)
[global_config]
[keybindings]
[profiles]
[[default]]
audible_bell = True
cursor_color = "#aaaaaa"
[layouts]
[[default]]
[[[window0]]]
type = Window
parent = ""
size = 1000 , 700
position = 100:100
[[[child1]]]
type = Terminal
parent = window0
[plugins]
希望有帮助。