This collection of Nemo actions are used in our internal workflow to make our lives better. All our company workflows are bases on Linux and opensource resources.
In this repo we have collected all the Nemo actions that are used to post, edit, and optimize of documents, images, blog, post, online store images and descriptions.
image_resize_* | (ImageMagick) to resize images on specific sizes and put the images in a resize/ subdir |
convert_to_* | use mogrify (ImageMagick) to convert images to specific format WebP, PNG, GIF with 90% quality |
pdf2images | use pdfimages command (poppler-utils package in Debian) to convert PDF pages in images and place them in "pdf2images" subdir |
img2pdf | use img2pdf utility to create a PDF file from selected images |
pdfShrink | Shrink pdf to a decent size, using ghostscript. You can chose to make images grayscale and/or change the resolution of images |
pdfMerge | Merge two or more pdf files in to a single pdf file, files will be merge using alphabetical name of the files. |
refresh | refresh the folder content. Similar with Refresh from Windows |
print selected file using default printer settings | |
printlibreoffice | print LibreOffice files with default LibreOffice print settings |
refresh | refresh the Nemo interface, basically is a right click menu shortcut for CTRL R |
python3 | Run any python file using python3 exec |
massRename | Use Bulky to mass rename selected files |
These instructions assume a Debian/Ubuntu based distro for the commands to
install dependencies. For users of other distros please replace sudo apt
with the equivalent for your distro's package management system.
First install git
sudo apt install git
Then clone this repo
git clone https://github.com/SoftGeekRO/sgs.nemo-actions.git
To have a functional Nemo actions pack you have to install first all the applications that are used by the Nemo actions. For this use the bash script install_app.sh. For this script to run you must have root permissions.
Having cloned the repo you can either install all the actions using the commands below or refer to the index of actions to install individual actions.
To install all the nemo actions use the install.sh bash file and for applications use install_apps.sh. Make sure that the file is executable.
chmod a x install.sh install_apps.sh
For install_apps.sh script you have: (all|install|uninstall|reinstall|installBulky|uninstallBulky|listPackages)
- listPackages command will show a list of what packages are going to be installed
To perform the installation for dependency applications use:
sudo ./install_apps.sh all
For install.sh you have three options: (install|uninstall|reinstall|)
To install sgs.nemo-actions use:
./install.sh install
this command will create soft links of all the actions inside you home profile Nemo
actions folder, under /~.local/share/nemo/actions
- Imagemagick (
apt install imagemagick
) to use images resizing - ffmpeg (
apt install ffmpeg
) to use video tools - sox (
apt install sox
) to use wav's concatenation tools - lame (
apt install lame
) to use audio conversions tools - flac (
apt install flac
) to use flac compression tools - poppler-utils (
apt install poppler-utils
) Poppler is a PDF rendering library based on the xpdf-3.0 code base. - qpdf (
apt install qpdf
) QPDF is a command-line tool and C library that performs content-preserving transformations on PDF files - pdf2djvu (
apt install pdf2djvu
) to use PDF to DJVU conversion tool - img2pdf (
apt install img2pdf
) to convert any image to pdf - pdftk (
apt install pdftk
) PDFtk is a simple tool for doing everyday things with PDF documents (in the future possible to remove from the apps) - pypdf (
apt install pypdf
) pypdf pypdf is a free and open-source pure-python PDF library capable of splitting, merging, cropping, and transforming - ghostscript (
apt install ghostscript
) Ghostscript is an interpreter for the PostScript® language and PDF files. - tesseract-ocr (
apt install tesseract-ocr
) Tesseract Open Source OCR Engine - tesseract-ocr-eng (
apt install tesseract-ocr-eng
) Tesseract Open Source OCR Engine for English documents - tesseract-ocr-ron (
apt install tesseract-ocr-eron
) Tesseract Open Source OCR Engine for Romanian documents - pdfimages (
apt install poppler-utils
) to use PDF images extraction tools - pdf_repair (
apt install qpdf
) to use PDF file repairing tools - zenity (
apt install zenity
) Zenity enables you to create the various types of simple dialog. - YAD (
apt install yad
) Program allows you to display GTK dialog boxes from command line or shell scripts.
In a terminal navigate to the sgs.nemo-actions
folder created when you
originally cloned the repo
e.g cd sgs.nemo-actions
Once in the correct folder update your local copy with the latest commits, before reinstalling your actions.
git pull origin; cd ..
nemo -q; NEMO_DEBUG=Actions NEMO_ACTION_VERBOSE=5 nemo --debug
To make scripts executed to multiple files with a progress bar,
use bash_action.sh
. Simple example:
- execute
ls
command on each selected files:Exec=<scripts/bash_action.py "ls {}" %F>
- same effect, but adding a bash variable:
Exec=<scripts/bash_action.py "filename={}; ls \"$filename\"" %F>
Take a look to existing actions. Particularly flac_to_wav.nemo_action
is a simple real-world example.
To specify icon you can use Icon-Name
. Available icons are located in /usr/share/icons/gnome/32x32/actions
.
nemo -q; NEMO_ACTION_VERBOSE=1 nemo --no-desktop
- the space between
"
and%F>
is important; ie"%F>
will not work