summaryrefslogtreecommitdiff
path: root/bin/caribou-preferences.in
Commit message (Collapse)AuthorAgeFilesLines
* fix print statement syntax for python3Parag Nemade2016-04-111-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=764764
* build: make sure to define $datarootdir in generated scriptsDaiki Ueno2012-12-301-0/+1
| | | | | | | | Some of automake standard directory variables are expanded using "${datarootdir}", which must be available at run-time. Define it at the beginning of the script templates. https://bugzilla.gnome.org/show_bug.cgi?id=687315
* caribou-preferences: Fix expansion of LD_LIBRARY_PATHColin Walters2012-12-061-1/+1
| | | | | | | Add the missing $ - otherwise we just get a literal string "LD_LIBRARY_PATH". https://bugzilla.gnome.org/show_bug.cgi?id=689823
* portability: use "=" operator instead of "==" in shell scriptsDaiki Ueno2012-10-081-1/+1
| | | | | | | "==" operator is only available in bash but not in the SUSv3 or POSIX shell specification. This causes a problem with Debian's dash. https://bugzilla.gnome.org/show_bug.cgi?id=685629
* portability: allow the use of /bin/sh instead of /bin/bashAntoine Jacoutot2012-10-021-2/+2
| | | | | In this case, ${BASH_SOURCE[0]} can be replaced with ${0} which is recognized by all bourne shells (bash, sh, ksh).
* Use GLib, GObject from gi.repository instead of glib, gobjectAlexandre Rostovtsev2011-08-311-1/+1
| | | | | | | | | | | | | | Use GLib and GObject from gi.repository instead of glib and gobject modules for compatibility with pygobject-3.0. Otherwise, when running on a system with pygobject-2.0 and pygobject-3.0 installed, caribou-preferences fails with ImportError: could not import gobject (error was: ImportError('When using gi.repository you must not import static modules like "gobject". Please change all occurrences of "import gobject" to "from gi.repository import GObject".',)) https://bugzilla.gnome.org/show_bug.cgi?id=657666
* Fix executables to set implicit XDG_DATA_DIRSEitan Isaacson2011-06-131-1/+2
|
* bin: fix path settings to never include empty path elements. fix typosDan Winship2011-05-241-7/+7
| | | | | | | | | | | | | Things like PYTHONPATH="foo:$PYTHONPATH" are bad, because if PYTHONPATH isn't previously set, you'll end up with a "" element in it, which will be interpreted as ".", which you don't want. Use some tricky bash syntax to say "add : and $PYTHONPATH if PYTHONPATH is set". Also fix a few typos ("licaribou", etc) https://bugzilla.gnome.org/show_bug.cgi?id=651005
* fixed the executables, again.Eitan Isaacson2011-05-051-2/+5
|
* Updated executables to be shell scripts.Eitan Isaacson2011-05-021-20/+41
| | | | Hopefully we set the right env variables.
* Major re-work of Python modules:Eitan Isaacson2011-05-021-0/+32
* Created Antler to use new keyboard model via PyGI * Rearanged settings to accomodate view/model seperation. * Created in preferences executable, it will be a standalone generic caribou settings UI where we will eventually get the important stuff in GNOME's control panel. * DBusified the UI.