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 3f5512c8a2
CI / build (push) Successful in 1m10s Details
Add shields
2024-04-19 23:10:30 +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 Include license in tarballs 2024-04-19 22:43:54 +02:00
nautilus Add top-level LICENSE file 2024-04-19 22:45:10 +02:00
.gitignore Additional temporary files to ignore 2024-04-19 20:40:24 +02:00
LICENSE Add top-level LICENSE file 2024-04-19 22:45:10 +02:00
README.md Add shields 2024-04-19 23:10:30 +02:00

README.md

nautilus-follow-symlink / caja-follow-symlink

GitHub Actions Workflow Status GitHub Release GitHub License

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

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

They add 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