Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
thunarx-python [2010/12/08 15:33] 38.104.202.226 created |
thunarx-python [2019/11/13 02:27] kevinbowen created |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Thunarx-Python - Python bindings for the Thunar Extension Framework ====== | + | ====== thunarx-python ====== |
+ | Python bindings for the Thunar Extension Framework | ||
+ | |||
+ | ===== Quick Links ===== | ||
+ | |||
+ | * [[http://git.xfce.org/bindings/thunarx-python/|Code Repository]] | ||
+ | * [[http://bugzilla.xfce.org/buglist.cgi?product=thunarx-python&component=general&resolution=---|Bug Reports]] | ||
+ | |||
+ | ===== Download ===== | ||
+ | |||
+ | The latest version is [[http://archive.xfce.org/src/bindings/thunarx-python/0.5/thunarx-python-0.5.1.tar.bz2|thunarx-python 0.5.1]] | ||
+ | |||
+ | ===== Installation and Usage ===== | ||
+ | |||
+ | === Dependencies === | ||
+ | |||
+ | * thunar (v1.7.0 or later) | ||
+ | * gtk+3 (3.20.0 or later) | ||
+ | * pygobject3 (3.20.0 or later) | ||
+ | |||
+ | For older versions of thunar or if wanting to use pygtk/gtk+2, stick with thunarx-python v0.3.0. | ||
+ | |||
+ | === Install === | ||
+ | |||
+ | To install, run the following commands: | ||
+ | $ ./configure (or ./autogen.sh if building from git) | ||
+ | $ make | ||
+ | $ make install | ||
+ | | ||
+ | If you have built thunar into a non-standard prefix, thunarx-python will be | ||
+ | installed there, but make sure pkg-config knows where it is. You may have to | ||
+ | update your PKG_CONFIG_PATH environment variable to include your thunar's | ||
+ | pkgconfig path. | ||
+ | |||
+ | export PKG_CONFIG_PATH="/thunar_prefix/lib/pkgconfig" | ||
+ | |||
+ | === Debugging === | ||
+ | |||
+ | To enable debug mode, start thunar with the following command: | ||
+ | |||
+ | $ THUNARX_PYTHON_DEBUG=all /path/to/thunar | ||
+ | |||
+ | ===== Extensions using thunarx-python ===== | ||
+ | |||
+ | * [[http://www.rabbitvcs.org|RabbitVCS]] |