Drop-down terminal for GNOME
Go to file
Gaetan Semet a28e541784 adding myself in about dlg
Signed-off-by: Gaetan Semet <gaetan@xeberon.net>
2014-02-14 17:01:33 +01:00
data adding myself in about dlg 2014-02-14 17:01:33 +01:00
doc Preliminary online help in sphinx/RST 2014-02-14 15:52:49 +01:00
git-hooks import python validate scripts and git hooks from the buildbot project 2014-02-11 15:00:39 +01:00
m4 Removing an auto-added file 2012-06-06 17:07:51 -03:00
po Fix typo from #123 2014-02-13 22:44:15 +01:00
src hardcoded ubuntu color 2014-02-14 10:27:06 +01:00
.gitignore add gitignore 2013-10-22 19:24:50 +02:00
.travis.yml travis: clean useless command 2014-02-13 14:19:21 +01:00
AUTHORS Add myself in AUTHORS 2014-02-11 19:26:30 +01:00
autogen.sh fixing python layout, part 1 2010-11-28 16:51:27 -02:00
ChangeLog Changelog redirects to NEWS 2014-02-12 11:16:15 +01:00
configure.ac fixed automake issue 2014-02-13 11:40:14 +01:00
COPYING Fixing file permissions (chmod -x) 2008-04-21 21:48:27 -03:00
fiximports.py import python validate scripts and git hooks from the buildbot project 2014-02-11 15:00:39 +01:00
INSTALL updated README 2013-11-01 22:02:01 +01:00
Makefile.am fixed automake issue 2014-02-13 11:40:14 +01:00
NEWS updated NEWS 2014-02-12 11:15:45 +01:00
pep8rc import python validate scripts and git hooks from the buildbot project 2014-02-11 15:00:39 +01:00
pylintrc import python validate scripts and git hooks from the buildbot project 2014-02-11 15:00:39 +01:00
python-requirements.txt add python requirement files 2013-10-23 10:16:28 +02:00
README.rst Update README.rst 2014-02-13 14:01:41 +01:00
validate.sh pep8/pylint 2014-02-13 18:55:40 +01:00

=================
Guake README file
=================

INTRO
~~~~~

Guake is a dropdown terminal made for the GNOME desktop
environment. Its style of window is based on an fps games, and one of
its goals is be easy to reach.

Guake is written mostly in python and has a little piece in C (global
hotkeys stuff). The code is placed in the src directory. Files and
images are in the data directory. Translation stuff is in the po directory.

Features? Bugs? Information?
Visit: http://guake.org/


LICENSE
~~~~~~~

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at
your option) any later version.

This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.


DEPENDENCIES
~~~~~~~~~~~~

 * Python2.7+
 * pygtk2.10 (gtk.StatusIcon)
 * python-vte
 * python-notify
 * python-dbus
 * python-gconf
 * python-xdg

To build guake, you will need the following packages too:

 * python-dev
 * gtk+-2.0-dev
 * pygtk-dev
 * gconf2-dev (to use some autoconf stuff)

Ubuntu
------

Under Debian/Ubuntu, the following command should install all the build
dependencies::

    sudo apt-get build-dep guake

For manual dependency listing (Ubuntu 13.10)::

    sudo apt-get install build-essential python autoconf
    sudo apt-get install gnome-common gtk-doc-tools libglib2.0-dev libgtk2.0-dev libgconf2-dev
    sudo apt-get install python-gtk2 python-gtk2-dev python-vte

RedHat/Fedora
-------------

TBD

Compilation
~~~~~~~~~~~~

We are using an autotools based installation, so if you got the source
of guake from a release tarball, please do the following::

    $ git clone https://github.com/Guake/guake.git
    $ cd guake
    $ ./autogen.sh && ./configure && make
    $ sudo make install

If you receive a message asking you if you have installed
guake.schemas properly when launching guake, it means that your
default sysconfdir is different from the one chosen by autotools. To
fix that, you probably have to append the param `--sysconfdir=/etc' to
your `./configure' call, like this::

    $ ./configure --sysconfidir=/etc && make

If it is not enought you can call, you can install the gconf schemas
file by hand doing the following::

    # gconftool-2 --makefile-install-rule data/guake.schemas

For more install details, please read the `INSTALL` file.

Git hook
~~~~~~~~

Please install this git hook if you want to beauty your patch before submission::

    $ cd guake
    $ ln -s git-hooks/post-commit .git/hooks/