Guake终端顶部还有空间


11

在13.04中启动Guake终端时,顶部留有1-2 cms的空间。即guake终端的顶部边框在屏幕顶部边缘下方1-2厘米。

我如何解决此问题,因为它在12.10中可以正常工作。

根据选择的答案,它现在移到顶部了,但是在侧面的两个次要线上是否有人有任何想法?(:)一直困扰着我)

Answers:


17

您可以通过使重力向上来解决问题。不,认真;)

您需要对文件进行简单的更改/usr/share/guake/guake.glade。使用您喜欢的文本编辑器打开该文件,然后查找显示以下内容的行

<property name="gravity">static</property>

更改该行,使其显示为

<property name="gravity">north</property>

保存文件,重新启动Guake,间隙应该消失了。


谢谢亨宁!违反重力定律从根本上解决了我的问题。;);)现在guake确实捕捉到了顶部..但是... guake终端的左侧和右侧都有很窄的线(不超过1毫米宽)。我猜说guake终端没有延伸到屏幕的整个宽度。
查理

我也看到了这些线条,但至少在我眼中,它们是如此之小,以至于我不会花时间去摆脱它们;)
Henning Kockerbeck 2013年

2
任何人都可以帮助我摆脱guake终端左侧和右侧的细线吗?
查理

停止在Ubuntu 14.10
Suor 2014年

我仍然有问题,因此我提交了一个错误报告。向下12像素,仅在其中一个屏幕上。
巴勃罗·比安奇

1

瓜克林间空地导致终端返回菜单栏,我已经用nano / usr / bin / guake做到了

找到它并在返回之前添加window_rect.y = 25

def get_final_window_rect(self):
        """Gets the final size of the main window of guake. The height
        is the window_height property, width is window_width and the
        horizontal alignment is given by window_alignment.
        """
        screen = self.window.get_screen()
        height = self.client.get_int(KEY('/general/window_height'))
        width = 100
        halignment = self.client.get_int(KEY('/general/window_halignment'))

        # get the rectangle just from the first/default monitor in the
        # future we might create a field to select which monitor you
        # wanna use
        window_rect = screen.get_monitor_geometry(0)
        total_width = window_rect.width
        window_rect.height = window_rect.height * height / 100
        window_rect.width = window_rect.width * width / 100

        if width < total_width:
            if halignment == ALIGN_CENTER:
                window_rect.x = (total_width - window_rect.width) / 2
            elif halignment == ALIGN_LEFT:
                window_rect.x = 0
            elif halignment == ALIGN_RIGHT:
                window_rect.x = total_width - window_rect.width
        window_rect.y = 25 # <<<<<<<<<<<<<<<<<<<<< here
        return window_rect

我尝试使用= 25和= 26的值进行此操作,但没有更改?
查理

它似乎确实是进行编辑的正确位置。谁能帮助我提供正确的价值观?window_rect.y属性值的单位是什么?是百分比还是什么?
查理

1
我也尝试了其他一些值...但是什么也没有发生...该文件已弃用吗?
查理

都不适合我
Suor 2014年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.