终结者屏幕默认位置

问题描述 投票:1回答:2

我想强制终结者在屏幕的左上角打开。当我保存布局时,我正确地定位了窗口。但是,每当我在计算机重启时打开终结器时,窗口都位于顶部附近,距左侧约1.5英寸。

我一直在搞乱配置文件,但无法弄清楚'位置'参数。例如,在[[[child0]]]下:

position = 36:32

[[[child1]]]下:

position = 834

任何人都可以解释如何自定义这些参数?

系统信息:

  • Ubuntu 17.10,内核4.13.0-43
  • 屏幕尺寸:1920x1080像素,或508x286毫米
  • 终结者在1.91

终结者/配置:

[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"
layout configuration terminator
2个回答
1
投票

有几件事要尝试。

以下对我有用:

  1. 打开终结器,然后根据需要调整其窗口的大小和位置。
  2. 在命令行区域中,右键单击,然后选择“首选项”。
  3. 在“布局”选项卡中,展开“类型/名称”列表,选择“终端1”,然后单击“保存”。
  4. 退出“首选项”对话框,然后关闭并重新打开“终结器”。

可用于配置许多applicationsq的显示属性的另一种方法是将--geometry=参数添加到Terminator命令行。

  1. 键入man x以显示X窗口系统的手册页。
  2. 向下滚动到几何规格。

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]

希望能帮助到你。

© www.soinside.com 2019 - 2024. All rights reserved.