Kupfer is a similar application launcher Gnome-Do, which we have spoken on this blog, the application is in repositories of Lucid Lynx, so to install you just have to look at Center for Software or typing in a terminal
sudo apt-get install kupfer
Once installed you find it in Applications-> Accessories , the application is minimized in system tray and we invoke Ctrl + Spacebar.
The point is this
We can change appearance slightly, so that for example look in keeping with theme that we installed, we must do following:
Alt + F2 type in
In dialog box that opens enter following
gksu gedit /usr/share/kupfer/kupfer/ui/browser.py
In file that opens look for following line: selectedc = ent.style.bg[gtk.STATE_SELECTED]
and replace it with this selectedc = ent.style.base[gtk.STATE_ACTIVE]
Kupfer Now we will see how active your gtk theme
Kupfer Change appearance
You can also remove border of window in same file as above edit after this line
self.window.add(widget)
We add these two
self.window.set_decorated(False)
self.window.set_border_width(6)
It will look like
0 Comments