0

Is there anyway to size down the drop down terminal Guake so that it doesn't take up the whole width of the screen?

muru
  • 197,895
  • 55
  • 485
  • 740
Amit Naik
  • 51
  • 1
  • 1
  • 9

2 Answers2

5

Open guake-prefs via Dash or terminal or right click in your guake terminal and open Preferences.

Now you can change your settings

enter image description here

A.B.
  • 90,397
-1
  • Make a backup:

cp /usr/bin/guake ~/Desktop/

  • open guake with text editor

gksu gedit /usr/bin/guake

Then search for the line that looks like this: width = 100 - this is how the code around it looks like:

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'))

And modify the width value (percentage) to whatever you want. By default, Guake is centred but you can also modify its alignment by editing line which looks like this: if halignment == ALIGN_CENTER: and replacing CENTER with LEFT or RIGHT.

RiddleMeThis
  • 1,076
  • 8
  • 17