Created
April 19, 2018 11:21
-
-
Save zaemiel/411567c0a396e266ca4a412329f9f4ca to your computer and use it in GitHub Desktop.
Nemo: How to open current folder in a terminal by a keyboard shortcut (Mint 18.x Cinnamon)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Firstly, i have to create a .gnome2/accels/nemo file | |
cd .gnome2 (a hidden folder. If there is no one - create it) | |
mkdir accels | |
touch accels\nemo | |
2. Reboot system. | |
After rebooting the .gnome2/accels/nemo file will be filled with an autogenerated info. | |
3. Ctrl + F | |
I have to find an "OpenInTerminal" substring. | |
It will find the following line: | |
; (gtk_accel_path "<Actions>/DirViewActions/OpenInTerminal" "") | |
4. Uncomment it by deleting ; | |
and | |
Replace "" with a keyboard shortcut, let's say F3 | |
(gtk_accel_path "<Actions>/DirViewActions/OpenInTerminal" "F3") | |
5. Restart Cinnamon (Ctrl + Alt + Backspace) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment