How to open Terminal in current opened folder in nautilus?
There are solutions: Keyboard shortcut for open terminal Nautilus >= 3.16
But they don't work in Ubuntu Bionic 18.04
How to open Terminal in current opened folder in nautilus?
There are solutions: Keyboard shortcut for open terminal Nautilus >= 3.16
But they don't work in Ubuntu Bionic 18.04
tl;tr You already found the answer it just needs some affection.
So just repeat it, click around and restart nautilus/relog/reboot until it starts working.
I wasn't aware that this is possible but now after reading your question I was intrigued.
So long story short: it's a bug. Its on GitLab and also on BugZilla.
Fortunately, custom scripts still work and you already found the answer for those. However, as you described, following the steps provided did not work - likely another bug.
After fiddling around for half an hour I got it working:
Follow the steps from the linked answer:
create file Terminal
in ~/.local/share/nautilus/scripts
with content:
#! /bin/bash
gnome-terminal
make it executable chmod +x ~/.local/share/nautilus/scripts/Terminal
F4 Terminal
to ~/.config/nautilus/scripts-accels
(or some other key)nautilus -q
or log out and log in again (to be sure)
Open Natilus
Press F4 (nothing happens)
Right click a folder, select Scripts
> Terminal
-> Go back to Nautilus
Press F4 again - it will work as expected.
Expected result should look like this (just in your default language):
ranger
for development. And nautilus for pictures videos and so on.
– vrcmr
Aug 05 '18 at 12:23
killall nautilus
then remove nautilus
(see here https://askubuntu.com/a/880422/627247), move ~/.config/nautilus
away, reinstall it, now recreate scripts-accels
and add only F4 Terminal
... finally, check its version nautilus --version
(should be 3.26.3
atm) and then start it from cmd via nautilus
and look for any error output...
– Fabian N.
Aug 05 '18 at 13:11
sudo dpkg --purge --force-depends nautilus
and then sudo apt install nautilus
– Fabian N.
Aug 06 '18 at 12:43
Terminal
script worked for me!
– Nagabhushan S N
May 30 '19 at 09:02