Nautilus and Caja extension to open the real path of symbolic links to directories. https://p.outlyer.net/nautilus-follow-symlink
Go to file
Toni Corvera 67d63bdf7c
CI / build (push) Successful in 1m5s Details
Package / tarball (push) Successful in 1m3s Details
Package / Build deb (and test-build) (caja) (push) Successful in 1m21s Details
Package / Build deb (and test-build) (nautilus) (push) Successful in 1m18s Details
Package / Build rpm (caja) (push) Failing after 2m3s Details
Package / Build rpm (nautilus) (push) Failing after 1m59s Details
Add missing entries for caja variant
2024-04-19 21:48:15 +02:00
.forgejo/workflows Restrict workflow to actual releases 2024-04-19 17:00:17 +02:00
.github/workflows Add sudo to apt-get commands 2024-04-19 21:04:14 +02:00
caja Add missing entries for caja variant 2024-04-19 21:48:15 +02:00
nautilus Raise version number 2024-04-19 20:38:07 +02:00
.gitignore Additional temporary files to ignore 2024-04-19 20:40:24 +02:00
README.md Reword and cleanup 2024-04-19 21:24:10 +02:00

README.md

nautilus-follow-symlink / caja-follow-symlink

nautilus-follow-symlink is a nautilus (GNOME Desktop) extension.

caja-follow-symlink is a caja (MATE Desktop) extension.

They adds a menu entry on symbolic links to directories which open the pointed directory (the real path).

They do so both when right clicking on the folder icon or on the contents of an opened symbolic link.

Visualisation

Homepage: https://p.outlyer.net/nautilus-follow-symlink

Installation

I provide both deb packages to download and install manually, e.g.:

dpkg -i nautilus-follow-symlink_1.2.1-pon.1_amd64.deb

Building packages from source

DEB package

tar zxvf nautilus-follow-symlink-1.2.1.tar.gz
cd nautilus-follow-symlink-1.2.1
dpkg-buildpackage -rfakeroot -us -uc -b 
# or
debuild -us -uc -b

RPM package

rpmbuild -tb nautilus-follow-symlink-1.2.1.tar.gz

Building from source

Download the tarball and follow the traditional configure + make workflow, e.g.:

tar xvf nautilus-follow-symlink-1.2.1.tar.gz
cd nautilus-follow-symlink-1.2.1
./configure
make
sudo make install

Building from the git repository

Building from the raw source in the repository requires the autotools.

git clone https://git.outlyer.net/outlyer/nautilus-follow-symlink/
cd nautilus-follow-symlink/nautilus
./bootstrap.sh
./configure
make
sudo make install