Nautilus Accels on Debian 9/Gnome 3.22.3
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
I'm very sorry for this, since it seems like the internet is full of this question. But all solutions I can find do not work.
When I open nautilus and right-click in a folder, there is an option "Open Terminal Here". Before updating to Debian 9, I had a Keyboard Shortcut set in the file ~/.config/nautilus/accels
, where I uncommented the line
(gtk_accel_path "<Actions>/ExtensionsMenuGroup/TerminalNautilus:OpenFolderLocal" "F12")
After updating, it doesn't work. The menu item is still there on right-click in nautilus but the accel doesn't work anymore. Does anyone have a solution to this?
debian nautilus
add a comment |Â
up vote
1
down vote
favorite
I'm very sorry for this, since it seems like the internet is full of this question. But all solutions I can find do not work.
When I open nautilus and right-click in a folder, there is an option "Open Terminal Here". Before updating to Debian 9, I had a Keyboard Shortcut set in the file ~/.config/nautilus/accels
, where I uncommented the line
(gtk_accel_path "<Actions>/ExtensionsMenuGroup/TerminalNautilus:OpenFolderLocal" "F12")
After updating, it doesn't work. The menu item is still there on right-click in nautilus but the accel doesn't work anymore. Does anyone have a solution to this?
debian nautilus
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I'm very sorry for this, since it seems like the internet is full of this question. But all solutions I can find do not work.
When I open nautilus and right-click in a folder, there is an option "Open Terminal Here". Before updating to Debian 9, I had a Keyboard Shortcut set in the file ~/.config/nautilus/accels
, where I uncommented the line
(gtk_accel_path "<Actions>/ExtensionsMenuGroup/TerminalNautilus:OpenFolderLocal" "F12")
After updating, it doesn't work. The menu item is still there on right-click in nautilus but the accel doesn't work anymore. Does anyone have a solution to this?
debian nautilus
I'm very sorry for this, since it seems like the internet is full of this question. But all solutions I can find do not work.
When I open nautilus and right-click in a folder, there is an option "Open Terminal Here". Before updating to Debian 9, I had a Keyboard Shortcut set in the file ~/.config/nautilus/accels
, where I uncommented the line
(gtk_accel_path "<Actions>/ExtensionsMenuGroup/TerminalNautilus:OpenFolderLocal" "F12")
After updating, it doesn't work. The menu item is still there on right-click in nautilus but the accel doesn't work anymore. Does anyone have a solution to this?
debian nautilus
debian nautilus
asked Jul 24 '17 at 7:22
Matthias Koenig
83
83
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
I'm an Ubuntu 18.04 user (with GNOME 3.28.3) and this have worked wonderfully for me. Hope it does for you too :)
Since version 3.15.4 Nautilus doesn't load the accel file anymore (Source).
Fortunatelly there's a better aproach in order to get what you want. Long explanation/useful resources can be found here and also here. In short:
Create a script called
Terminal
(yes, without a extension) inside the folder~/.local/share/nautilus/scripts
with the following content:# !/bin/sh
gnome-terminalMake it executable, then close any Nautilus instance:
chmod +x Terminal
nautilus -qCreate (or edit) the
~/.config/nautilus/scripts-accels
file adding these lines:F4 Terminal
; Commented lines must have a space after the semicolon
; Examples of other key combinations:
; <Control>F12 Terminal
; <Alt>F12 Terminal
; <Shift>F12 TerminalTest it! Open Nautilus, right click, and choose Scripts > Terminal. Or, use the keyboard shortcut that you've just configured :)
New contributor
Ãlvaro MartÃn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
I'm an Ubuntu 18.04 user (with GNOME 3.28.3) and this have worked wonderfully for me. Hope it does for you too :)
Since version 3.15.4 Nautilus doesn't load the accel file anymore (Source).
Fortunatelly there's a better aproach in order to get what you want. Long explanation/useful resources can be found here and also here. In short:
Create a script called
Terminal
(yes, without a extension) inside the folder~/.local/share/nautilus/scripts
with the following content:# !/bin/sh
gnome-terminalMake it executable, then close any Nautilus instance:
chmod +x Terminal
nautilus -qCreate (or edit) the
~/.config/nautilus/scripts-accels
file adding these lines:F4 Terminal
; Commented lines must have a space after the semicolon
; Examples of other key combinations:
; <Control>F12 Terminal
; <Alt>F12 Terminal
; <Shift>F12 TerminalTest it! Open Nautilus, right click, and choose Scripts > Terminal. Or, use the keyboard shortcut that you've just configured :)
New contributor
Ãlvaro MartÃn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
up vote
1
down vote
accepted
I'm an Ubuntu 18.04 user (with GNOME 3.28.3) and this have worked wonderfully for me. Hope it does for you too :)
Since version 3.15.4 Nautilus doesn't load the accel file anymore (Source).
Fortunatelly there's a better aproach in order to get what you want. Long explanation/useful resources can be found here and also here. In short:
Create a script called
Terminal
(yes, without a extension) inside the folder~/.local/share/nautilus/scripts
with the following content:# !/bin/sh
gnome-terminalMake it executable, then close any Nautilus instance:
chmod +x Terminal
nautilus -qCreate (or edit) the
~/.config/nautilus/scripts-accels
file adding these lines:F4 Terminal
; Commented lines must have a space after the semicolon
; Examples of other key combinations:
; <Control>F12 Terminal
; <Alt>F12 Terminal
; <Shift>F12 TerminalTest it! Open Nautilus, right click, and choose Scripts > Terminal. Or, use the keyboard shortcut that you've just configured :)
New contributor
Ãlvaro MartÃn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
up vote
1
down vote
accepted
up vote
1
down vote
accepted
I'm an Ubuntu 18.04 user (with GNOME 3.28.3) and this have worked wonderfully for me. Hope it does for you too :)
Since version 3.15.4 Nautilus doesn't load the accel file anymore (Source).
Fortunatelly there's a better aproach in order to get what you want. Long explanation/useful resources can be found here and also here. In short:
Create a script called
Terminal
(yes, without a extension) inside the folder~/.local/share/nautilus/scripts
with the following content:# !/bin/sh
gnome-terminalMake it executable, then close any Nautilus instance:
chmod +x Terminal
nautilus -qCreate (or edit) the
~/.config/nautilus/scripts-accels
file adding these lines:F4 Terminal
; Commented lines must have a space after the semicolon
; Examples of other key combinations:
; <Control>F12 Terminal
; <Alt>F12 Terminal
; <Shift>F12 TerminalTest it! Open Nautilus, right click, and choose Scripts > Terminal. Or, use the keyboard shortcut that you've just configured :)
New contributor
Ãlvaro MartÃn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I'm an Ubuntu 18.04 user (with GNOME 3.28.3) and this have worked wonderfully for me. Hope it does for you too :)
Since version 3.15.4 Nautilus doesn't load the accel file anymore (Source).
Fortunatelly there's a better aproach in order to get what you want. Long explanation/useful resources can be found here and also here. In short:
Create a script called
Terminal
(yes, without a extension) inside the folder~/.local/share/nautilus/scripts
with the following content:# !/bin/sh
gnome-terminalMake it executable, then close any Nautilus instance:
chmod +x Terminal
nautilus -qCreate (or edit) the
~/.config/nautilus/scripts-accels
file adding these lines:F4 Terminal
; Commented lines must have a space after the semicolon
; Examples of other key combinations:
; <Control>F12 Terminal
; <Alt>F12 Terminal
; <Shift>F12 TerminalTest it! Open Nautilus, right click, and choose Scripts > Terminal. Or, use the keyboard shortcut that you've just configured :)
New contributor
Ãlvaro MartÃn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Ãlvaro MartÃn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered Oct 1 at 4:10
Ãlvaro MartÃn
262
262
New contributor
Ãlvaro MartÃn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Ãlvaro MartÃn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Ãlvaro MartÃn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f381360%2fnautilus-accels-on-debian-9-gnome-3-22-3%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password