nautilus - Keyboard shortcut for terminal in Ubuntu 16.10 not working - Ask Ubuntu
i had shortcut "open terminal here" working in 16.04 using
(gtk_accel_path "<actions>/extensionsmenugroup/terminalnautilus:openfolderlocal" "f12")
in ~/.config/nautilus/accels
. after update 16.10 shortcut stopped working.
does knows if accelerator changed or if there way of setting it?
how can debug problem figure out?
update: tested on computer 16.10 upgraded 14.04 , not working either.
as stated david foerster
nautilus doesn't support accel map anymore (currently i'm testing on ubuntu 17.10).
i found answer on https://askubuntu.com/a/696901/44054
just note, script on ~/.local/share/nautilus/scripts
must have no extension. if put extension won't work (at least in case didn't). also, remember make executable.
solution
(in case link , solution broken)
so in case a
echo "#! /bin/sh gnome-terminal" > ~/.local/share/nautilus/scripts/terminal chmod +x ~/.local/share/nautilus/scripts/terminal
then, created
echo "f12 terminal" > ~/.config/nautilus/scripts-accels
then, after restarting nautilus, terminal opened through script pressing f12.
Comments
Post a Comment