Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 1.66 KB

File metadata and controls

22 lines (13 loc) · 1.66 KB

Nautilus-Python-Extensions

To make these work you'll need to install the package "nautilus-python" in Fedora, that would be sudo dnf install nautilus-python.

To use these extensions, place the files in the directory ~/local/share/nautilus-python/extensions and ensure they are executable.

new-text.py

This extension adds a context menu option for creating a "New Text File." It'll make a new text file in the current directory.

Screenshot From 2025-07-27 17-40-45 Screenshot From 2025-07-27 17-40-56

To create a new text file, type the desired name and click "Create" or press the Enter key. If you want the file to have a specific extension (e.g., .sh, .py), be sure to include it in the name.

image-converter.py

This extension allows you to convert image files directly from the context menu. When you right-click an image file, you'll see an option to "Convert." Clicking this will open a submenu where you can select the desired format for conversion.

Screenshot From 2025-07-27 17-45-09 Screenshot From 2025-07-27 17-45-17

Currently, it supports JPG, PNG, and WEBP formats. Adding support for additional formats is straightforward. It utilizes ffmpeg for image conversion.