Plugins for the Thunar file browser
Project description
🖱️ 🛠️ Thunar Plugins
This Python package extends the Thunar file manager and provides a way for other Python packages to do the same without worrying about Thunar finding them.
✨ Features Added to Thunar
-
✅ a settings menu to en-/disable plugins added by this or other Python packages
-
🔗 creating links to a file or folder
-
☑️ Calculating various checksums of files
-
🗓️ planned: all features from
thunar-custom-actions
📦 Installation
If you are on an Arch-based Linux, you can install the python-thunar-plugins-git
package from the AUR:
# using yay, you may of course use your favourite AUR installer
pacman -Syu yay
yay -Syu python-thunar-plugins-git
In this case you might only have to restart Thunar to see the new plugins:
thunar -q
Other Platforms: Installation from PyPI
☝️ Prerequisites
For these Thunar plugins to work, you will need to have installed:
- Thunar (obviously)
- thunarx-python
Install this package from PyPI via
pip install thunar-plugins
If that fails, try
python3 -m pip install --user thunar-plugins
Or install it from the repository root via
pip install .
⚡ Activating the Thunar Plugins
As it is not possible (or at least deprecated) with setuptools
to install files outside of the
”Python-realm”, one more step is required to activate the Thunar plugins after
installation from PyPI:
thunar-plugins activate
If that doesn't work, try
python3 -m thunar_plugins activate
That should place an appropriate symlink for Thunar(x-python) to find the plugins.
For Thunar to see the new plugins, you will need to restart it once:
thunar -q # or simply log out and back in again
➕ Adding More Plugins
This thunar_plugins
package can act as a stepping stone for other packages
that add plugins to Thunar: The activator script loads all thunar_plugin
entry points provided by any installed Python package. So if another package
provides a Thunar plugin (e.g. a new context menu entry) with class
mypackage.mymodule.mysubmodule.MyThunarPlugin
, that package may adjust its
setup.cfg
like this and stop caring about how to tell Thunar where the plugin
can be found:
[options]
install_requires = thunar_plugins
[options.entry_points]
thunar_plugin =
my-thunar-plugin = mypackage.mymodule.mysubmodule:MyThunarPlugin
For proper display in the
thunar-plugins
settings dialog, every Python Thunar plugin class registered like this should also have a shortname
and a one-sentencedescription
string attribute.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file thunar-plugins-0.3.1.tar.gz
.
File metadata
- Download URL: thunar-plugins-0.3.1.tar.gz
- Upload date:
- Size: 28.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c5c516e0bad8e682752be962040433d2a8c04999853f0ccfb38fb3f86fc7029 |
|
MD5 | d8f68bf0079bfb405f21ee4834e4f81f |
|
BLAKE2b-256 | db40824c21426eede34368c4282be8f2ec584e9b0f203220603aaec3bea16148 |