I changed from Nautilus to Nemo on my Ubuntu 20.04 and I really miss sushi functionality (pressing space bar and having a quick look on the file). I'snt there any way to have the same feature on Nemo? Thank you!
Asked
Active
Viewed 3,038 times
1 Answers
8
LinuxMint has a fork of GNOME Sushi. They call it nemo-preview
.
It may be installed by obtaining the needed packages manually:
cd ~/Downloads
wget http://packages.linuxmint.com/pool/backport/n/nemo-preview/nemo-preview_4.6.0+ulyana_amd64.deb
wget http://packages.linuxmint.com/pool/backport/x/xreader/gir1.2-xreader_2.8.3+ulyssa_amd64.deb
wget http://packages.linuxmint.com/pool/backport/x/xreader/libxreaderview3_2.8.3+ulyssa_amd64.deb
wget http://packages.linuxmint.com/pool/backport/x/xreader/libxreaderdocument3_2.8.3+ulyssa_amd64.deb
sudo apt-get install ./gir1.2-xreader_2.8.3+ulyssa_amd64.deb ./libxreaderdocument3_2.8.3+ulyssa_amd64.deb ./libxreaderview3_2.8.3+ulyssa_amd64.deb ./nemo-preview_4.6.0+ulyana_amd64.deb
sudo apt-get install gir1.2-gtksource-3.0
Then you have to restart Nemo by nemo -q
, launch it again, select file, hit Space and enjoy.

N0rbert
- 99,918
sudo apt-get install gir1.2-gtksource-3.0
and retry. – N0rbert Jan 07 '21 at 14:54THANKS
– Tomachi Dec 08 '22 at 23:55