Is it possible to add Meld in the contextual menu to easily compare 2 files ? On Windows, I can do that with Beyond Compare, would it be possible to do the same in Nautilus ?
Thank you
https://launchpad.net/nautilus-compare/
nautilus-compare is an extension for naulitus that uses meld for diff comparisons.
nautilus-compare was removed from the repositories because it's based on python2. A new release based on python3 is available but misses someone to package it for Debian.
sudo apt install nemo-compare replaces nautilus-compare on Ubuntu 21.04 and later (including Mint)
https://github.com/weshouman/nautilus-meld-compare-extension
This works on modern Nautilus (tested on current v46).
The deb package from 1 used to work with previous versions of nautilus on Debian:
Now for Gnome 43 and above, it is necessary to replace the line
def get_file_items(self, window, files):
with
def get_file_items(self, files):
in file nautilus-compare.py, for this extremely useful nautilus extension to work.