Hidden Key Bindings? (Specifically Ctrl+Alt+D and Shift+Super+!)

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
3
down vote

favorite












I'm trying out Gnome on the newest version of Ubuntu and it seems that there are 'secret' key bindings. For example, Ctrl+Alt+D minimizes all my windows and Shift+Super+! Opens the first program in my dock. Under the settings and gconf-editor I cannot find these keybindings. Ctrl+Super+D also minimizes my windows but it shows that in the settings. Where can I find and edit all my key bindings? Specifically, how can I change the two key bindings previously mentioned? Thank you.










share|improve this question



























    up vote
    3
    down vote

    favorite












    I'm trying out Gnome on the newest version of Ubuntu and it seems that there are 'secret' key bindings. For example, Ctrl+Alt+D minimizes all my windows and Shift+Super+! Opens the first program in my dock. Under the settings and gconf-editor I cannot find these keybindings. Ctrl+Super+D also minimizes my windows but it shows that in the settings. Where can I find and edit all my key bindings? Specifically, how can I change the two key bindings previously mentioned? Thank you.










    share|improve this question

























      up vote
      3
      down vote

      favorite









      up vote
      3
      down vote

      favorite











      I'm trying out Gnome on the newest version of Ubuntu and it seems that there are 'secret' key bindings. For example, Ctrl+Alt+D minimizes all my windows and Shift+Super+! Opens the first program in my dock. Under the settings and gconf-editor I cannot find these keybindings. Ctrl+Super+D also minimizes my windows but it shows that in the settings. Where can I find and edit all my key bindings? Specifically, how can I change the two key bindings previously mentioned? Thank you.










      share|improve this question















      I'm trying out Gnome on the newest version of Ubuntu and it seems that there are 'secret' key bindings. For example, Ctrl+Alt+D minimizes all my windows and Shift+Super+! Opens the first program in my dock. Under the settings and gconf-editor I cannot find these keybindings. Ctrl+Super+D also minimizes my windows but it shows that in the settings. Where can I find and edit all my key bindings? Specifically, how can I change the two key bindings previously mentioned? Thank you.







      keyboard shortcut-keys gnome-shell






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Aug 20 at 8:20









      Graham

      2,09461526




      2,09461526










      asked Aug 19 at 20:05









      Billl bob

      182




      182




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          5
          down vote



          accepted










          There is some mystery, but it may be revealed:




          • Ctrl+Alt+D is defined
            in /org/gnome/desktop/wm/keybindings/show-desktop (check in dconf-editor):



            dconf-editor



            but Ctrl is named <Primary> here. So we can find them in gsettings:



            gsettings list-recursively | egrep "Primary.*Alt.*d"
            org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']



          • Shift+Super+! (or more precise Shift+Super+1)



            seems to be secret - are shown in dconf-editor and in gsettings:



            gsettings list-recursively | grep -i shift.*super
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-10 ['<Shift><Super>0']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-1 ['<Shift><Super>1']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-2 ['<Shift><Super>2']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-3 ['<Shift><Super>3']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-4 ['<Shift><Super>4']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-5 ['<Shift><Super>5']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-6 ['<Shift><Super>6']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-7 ['<Shift><Super>7']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-8 ['<Shift><Super>8']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-9 ['<Shift><Super>9']



          • Ctrl+Super+D



            is defined in GNOME Control Center → Keyboard (gnome-control-center keyboard) and in dconf-editor (see above):



            Ctrl+Super+D



            and in gsettings:



            gsettings list-recursively | egrep "Primary.*Super.*d"
            org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']


          Conclusion:



          1. all stuff is shown in gsettings. But <Ctrl> is named <Primary>.

          2. all this stuff looks more and more like RegEdit in some other operating system.





          share|improve this answer






















          • Perfect! Thank you very much
            – Billl bob
            Aug 19 at 22:56










          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "89"
          ;
          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: true,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          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%2faskubuntu.com%2fquestions%2f1066942%2fhidden-key-bindings-specifically-ctrlaltd-and-shiftsuper%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
          5
          down vote



          accepted










          There is some mystery, but it may be revealed:




          • Ctrl+Alt+D is defined
            in /org/gnome/desktop/wm/keybindings/show-desktop (check in dconf-editor):



            dconf-editor



            but Ctrl is named <Primary> here. So we can find them in gsettings:



            gsettings list-recursively | egrep "Primary.*Alt.*d"
            org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']



          • Shift+Super+! (or more precise Shift+Super+1)



            seems to be secret - are shown in dconf-editor and in gsettings:



            gsettings list-recursively | grep -i shift.*super
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-10 ['<Shift><Super>0']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-1 ['<Shift><Super>1']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-2 ['<Shift><Super>2']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-3 ['<Shift><Super>3']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-4 ['<Shift><Super>4']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-5 ['<Shift><Super>5']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-6 ['<Shift><Super>6']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-7 ['<Shift><Super>7']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-8 ['<Shift><Super>8']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-9 ['<Shift><Super>9']



          • Ctrl+Super+D



            is defined in GNOME Control Center → Keyboard (gnome-control-center keyboard) and in dconf-editor (see above):



            Ctrl+Super+D



            and in gsettings:



            gsettings list-recursively | egrep "Primary.*Super.*d"
            org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']


          Conclusion:



          1. all stuff is shown in gsettings. But <Ctrl> is named <Primary>.

          2. all this stuff looks more and more like RegEdit in some other operating system.





          share|improve this answer






















          • Perfect! Thank you very much
            – Billl bob
            Aug 19 at 22:56














          up vote
          5
          down vote



          accepted










          There is some mystery, but it may be revealed:




          • Ctrl+Alt+D is defined
            in /org/gnome/desktop/wm/keybindings/show-desktop (check in dconf-editor):



            dconf-editor



            but Ctrl is named <Primary> here. So we can find them in gsettings:



            gsettings list-recursively | egrep "Primary.*Alt.*d"
            org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']



          • Shift+Super+! (or more precise Shift+Super+1)



            seems to be secret - are shown in dconf-editor and in gsettings:



            gsettings list-recursively | grep -i shift.*super
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-10 ['<Shift><Super>0']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-1 ['<Shift><Super>1']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-2 ['<Shift><Super>2']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-3 ['<Shift><Super>3']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-4 ['<Shift><Super>4']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-5 ['<Shift><Super>5']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-6 ['<Shift><Super>6']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-7 ['<Shift><Super>7']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-8 ['<Shift><Super>8']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-9 ['<Shift><Super>9']



          • Ctrl+Super+D



            is defined in GNOME Control Center → Keyboard (gnome-control-center keyboard) and in dconf-editor (see above):



            Ctrl+Super+D



            and in gsettings:



            gsettings list-recursively | egrep "Primary.*Super.*d"
            org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']


          Conclusion:



          1. all stuff is shown in gsettings. But <Ctrl> is named <Primary>.

          2. all this stuff looks more and more like RegEdit in some other operating system.





          share|improve this answer






















          • Perfect! Thank you very much
            – Billl bob
            Aug 19 at 22:56












          up vote
          5
          down vote



          accepted







          up vote
          5
          down vote



          accepted






          There is some mystery, but it may be revealed:




          • Ctrl+Alt+D is defined
            in /org/gnome/desktop/wm/keybindings/show-desktop (check in dconf-editor):



            dconf-editor



            but Ctrl is named <Primary> here. So we can find them in gsettings:



            gsettings list-recursively | egrep "Primary.*Alt.*d"
            org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']



          • Shift+Super+! (or more precise Shift+Super+1)



            seems to be secret - are shown in dconf-editor and in gsettings:



            gsettings list-recursively | grep -i shift.*super
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-10 ['<Shift><Super>0']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-1 ['<Shift><Super>1']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-2 ['<Shift><Super>2']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-3 ['<Shift><Super>3']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-4 ['<Shift><Super>4']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-5 ['<Shift><Super>5']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-6 ['<Shift><Super>6']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-7 ['<Shift><Super>7']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-8 ['<Shift><Super>8']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-9 ['<Shift><Super>9']



          • Ctrl+Super+D



            is defined in GNOME Control Center → Keyboard (gnome-control-center keyboard) and in dconf-editor (see above):



            Ctrl+Super+D



            and in gsettings:



            gsettings list-recursively | egrep "Primary.*Super.*d"
            org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']


          Conclusion:



          1. all stuff is shown in gsettings. But <Ctrl> is named <Primary>.

          2. all this stuff looks more and more like RegEdit in some other operating system.





          share|improve this answer














          There is some mystery, but it may be revealed:




          • Ctrl+Alt+D is defined
            in /org/gnome/desktop/wm/keybindings/show-desktop (check in dconf-editor):



            dconf-editor



            but Ctrl is named <Primary> here. So we can find them in gsettings:



            gsettings list-recursively | egrep "Primary.*Alt.*d"
            org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']



          • Shift+Super+! (or more precise Shift+Super+1)



            seems to be secret - are shown in dconf-editor and in gsettings:



            gsettings list-recursively | grep -i shift.*super
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-10 ['<Shift><Super>0']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-1 ['<Shift><Super>1']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-2 ['<Shift><Super>2']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-3 ['<Shift><Super>3']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-4 ['<Shift><Super>4']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-5 ['<Shift><Super>5']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-6 ['<Shift><Super>6']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-7 ['<Shift><Super>7']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-8 ['<Shift><Super>8']
            org.gnome.shell.extensions.dash-to-dock app-shift-hotkey-9 ['<Shift><Super>9']



          • Ctrl+Super+D



            is defined in GNOME Control Center → Keyboard (gnome-control-center keyboard) and in dconf-editor (see above):



            Ctrl+Super+D



            and in gsettings:



            gsettings list-recursively | egrep "Primary.*Super.*d"
            org.gnome.desktop.wm.keybindings show-desktop ['<Primary><Super>d', '<Primary><Alt>d', '<Super>d']


          Conclusion:



          1. all stuff is shown in gsettings. But <Ctrl> is named <Primary>.

          2. all this stuff looks more and more like RegEdit in some other operating system.






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Aug 20 at 3:52









          muru

          130k19274467




          130k19274467










          answered Aug 19 at 20:39









          N0rbert

          16.1k33275




          16.1k33275











          • Perfect! Thank you very much
            – Billl bob
            Aug 19 at 22:56
















          • Perfect! Thank you very much
            – Billl bob
            Aug 19 at 22:56















          Perfect! Thank you very much
          – Billl bob
          Aug 19 at 22:56




          Perfect! Thank you very much
          – Billl bob
          Aug 19 at 22:56

















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1066942%2fhidden-key-bindings-specifically-ctrlaltd-and-shiftsuper%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