O terminal Guake tem espaço no topo

11

Ao iniciar o terminal Guake em 13.04, há um espaço de 1-2 cm à esquerda no topo. Ou seja, a borda superior do terminal do guache é de 1-2 cm abaixo da borda superior da tela.

Como posso consertar isso, pois estava funcionando perfeitamente em 12.10.

De acordo com a resposta selecionada, agora está tudo ok, mas alguém tem alguma idéia sobre as duas linhas menores nas laterais? (:) Isso continua me incomodando)

    
por charlie 28.04.2013 / 12:42

2 respostas

17

Você pode resolver o problema fazendo com que a gravidade suba. Não, sério;)

Você precisa fazer uma alteração simples no arquivo /usr/share/guake/guake.glade . Abra esse arquivo com seu editor de texto favorito e procure a linha que diz

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

Mude essa linha para que ela diga

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

Salve o arquivo, reinicie o Guake e a lacuna deverá desaparecer.

    
por Henning Kockerbeck 28.04.2013 / 21:23
1

guake glade faz com que o terminal volte ao menu, eu fiz isso com nano / usr / bin / guake

encontre isso e adicione window_rect.y = 25 antes de retornar

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
    
por mert 29.05.2013 / 10:14

Tags