Nautilus Accels on Debian 9/Gnome 3.22.3

The name of the pictureThe name of the pictureThe name of the pictureClash 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?










share|improve this question

























    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?










    share|improve this question























      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?










      share|improve this question













      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jul 24 '17 at 7:22









      Matthias Koenig

      83




      83




















          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:




          1. Create a script called Terminal (yes, without a extension) inside the folder ~/.local/share/nautilus/scripts with the following content:



            # !/bin/sh
            gnome-terminal



          2. Make it executable, then close any Nautilus instance:



            chmod +x Terminal
            nautilus -q



          3. Create (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 Terminal


          4. Test it! Open Nautilus, right click, and choose Scripts > Terminal. Or, use the keyboard shortcut that you've just configured :)






          share|improve this answer








          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.

















            Your Answer







            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "106"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            convertImagesToLinks: false,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













             

            draft saved


            draft discarded


















            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






























            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:




            1. Create a script called Terminal (yes, without a extension) inside the folder ~/.local/share/nautilus/scripts with the following content:



              # !/bin/sh
              gnome-terminal



            2. Make it executable, then close any Nautilus instance:



              chmod +x Terminal
              nautilus -q



            3. Create (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 Terminal


            4. Test it! Open Nautilus, right click, and choose Scripts > Terminal. Or, use the keyboard shortcut that you've just configured :)






            share|improve this answer








            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.





















              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:




              1. Create a script called Terminal (yes, without a extension) inside the folder ~/.local/share/nautilus/scripts with the following content:



                # !/bin/sh
                gnome-terminal



              2. Make it executable, then close any Nautilus instance:



                chmod +x Terminal
                nautilus -q



              3. Create (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 Terminal


              4. Test it! Open Nautilus, right click, and choose Scripts > Terminal. Or, use the keyboard shortcut that you've just configured :)






              share|improve this answer








              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.



















                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:




                1. Create a script called Terminal (yes, without a extension) inside the folder ~/.local/share/nautilus/scripts with the following content:



                  # !/bin/sh
                  gnome-terminal



                2. Make it executable, then close any Nautilus instance:



                  chmod +x Terminal
                  nautilus -q



                3. Create (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 Terminal


                4. Test it! Open Nautilus, right click, and choose Scripts > Terminal. Or, use the keyboard shortcut that you've just configured :)






                share|improve this answer








                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:




                1. Create a script called Terminal (yes, without a extension) inside the folder ~/.local/share/nautilus/scripts with the following content:



                  # !/bin/sh
                  gnome-terminal



                2. Make it executable, then close any Nautilus instance:



                  chmod +x Terminal
                  nautilus -q



                3. Create (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 Terminal


                4. Test it! Open Nautilus, right click, and choose Scripts > Terminal. Or, use the keyboard shortcut that you've just configured :)







                share|improve this answer








                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.









                share|improve this answer



                share|improve this answer






                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.



























                     

                    draft saved


                    draft discarded















































                     


                    draft saved


                    draft discarded














                    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













































































                    Popular posts from this blog

                    How to check contact read email or not when send email to Individual?

                    Bahrain

                    Postfix configuration issue with fips on centos 7; mailgun relay