Can't find “Switch to workspace action” listed in keyboard shortcuts












1















I am having an issue where my Ubuntu 18.04 OS keyboard shortcuts are interfering with my PHP Storm ones. I was reading Unable to use IntelliJ IDEA keyboard shortcuts on Ubuntu and was looking for "Switch to workspace" action which had CTRL + ALT + ARROW KEYS, but I don't see those keys listed as a shortcut at all. I am using a fresh copy of Ubuntu (after my old one needed to be rebuilt) and I know that I was able to find it in the past.



Here is a screenshot:
enter image description here










share|improve this question



























    1















    I am having an issue where my Ubuntu 18.04 OS keyboard shortcuts are interfering with my PHP Storm ones. I was reading Unable to use IntelliJ IDEA keyboard shortcuts on Ubuntu and was looking for "Switch to workspace" action which had CTRL + ALT + ARROW KEYS, but I don't see those keys listed as a shortcut at all. I am using a fresh copy of Ubuntu (after my old one needed to be rebuilt) and I know that I was able to find it in the past.



    Here is a screenshot:
    enter image description here










    share|improve this question

























      1












      1








      1








      I am having an issue where my Ubuntu 18.04 OS keyboard shortcuts are interfering with my PHP Storm ones. I was reading Unable to use IntelliJ IDEA keyboard shortcuts on Ubuntu and was looking for "Switch to workspace" action which had CTRL + ALT + ARROW KEYS, but I don't see those keys listed as a shortcut at all. I am using a fresh copy of Ubuntu (after my old one needed to be rebuilt) and I know that I was able to find it in the past.



      Here is a screenshot:
      enter image description here










      share|improve this question














      I am having an issue where my Ubuntu 18.04 OS keyboard shortcuts are interfering with my PHP Storm ones. I was reading Unable to use IntelliJ IDEA keyboard shortcuts on Ubuntu and was looking for "Switch to workspace" action which had CTRL + ALT + ARROW KEYS, but I don't see those keys listed as a shortcut at all. I am using a fresh copy of Ubuntu (after my old one needed to be rebuilt) and I know that I was able to find it in the past.



      Here is a screenshot:
      enter image description here







      18.04 shortcut-keys






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 10 at 21:13









      user1015214user1015214

      1236




      1236






















          1 Answer
          1






          active

          oldest

          votes


















          2














          Using dconf-editor



          The option to change the shortcut keys to switch workspace up, down, left or right (the latter not applicable in default gnome shell) indeed are not exposed in that dialog. You still can change these keyboard assignments by installing dconf-editor. Navigate to org.gnome.desktop.wm.keybindings to find all these window manager related keybindings. You will be able to remove all <Control><Alt><Arrow key> combinations there, leaving alternative keybindings, i.e., <Super>Page_Down and <Super>Page_Up in place.



          Using the terminal



          Settings can also be changed using the terminal. For example, to list all available keys, issue the command



          gsettings list-keys org.gnome.desktop.wm.keybindings 


          To learn about what a key contains:



          gsettings get org.gnome.desktop.wm.keybindings switch-to-workspace-down


          (Tip: Tab-completion works to complete the names of the schema's and keys)



          To remove <Control><Alt><Down>, redefine the key:



          gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-down ['<Super>Page_Down']


          To reset to default:



          gsettings reset org.gnome.desktop.wm.keybindings switch-to-workspace-down





          share|improve this answer
























          • Perfect! Dconf did exactly the trick! Though, I'm a bit confused why it didn't show up on the regular key-bindings section, especially since I believe I was able to see and change it there on a different computer....

            – user1015214
            Jan 11 at 13:54











          • Might have been taken out between Gnome Shell versions, or you just may have had the wrong impression indeed.

            – vanadium
            Jan 11 at 20:28













          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',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          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%2f1108690%2fcant-find-switch-to-workspace-action-listed-in-keyboard-shortcuts%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          2














          Using dconf-editor



          The option to change the shortcut keys to switch workspace up, down, left or right (the latter not applicable in default gnome shell) indeed are not exposed in that dialog. You still can change these keyboard assignments by installing dconf-editor. Navigate to org.gnome.desktop.wm.keybindings to find all these window manager related keybindings. You will be able to remove all <Control><Alt><Arrow key> combinations there, leaving alternative keybindings, i.e., <Super>Page_Down and <Super>Page_Up in place.



          Using the terminal



          Settings can also be changed using the terminal. For example, to list all available keys, issue the command



          gsettings list-keys org.gnome.desktop.wm.keybindings 


          To learn about what a key contains:



          gsettings get org.gnome.desktop.wm.keybindings switch-to-workspace-down


          (Tip: Tab-completion works to complete the names of the schema's and keys)



          To remove <Control><Alt><Down>, redefine the key:



          gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-down ['<Super>Page_Down']


          To reset to default:



          gsettings reset org.gnome.desktop.wm.keybindings switch-to-workspace-down





          share|improve this answer
























          • Perfect! Dconf did exactly the trick! Though, I'm a bit confused why it didn't show up on the regular key-bindings section, especially since I believe I was able to see and change it there on a different computer....

            – user1015214
            Jan 11 at 13:54











          • Might have been taken out between Gnome Shell versions, or you just may have had the wrong impression indeed.

            – vanadium
            Jan 11 at 20:28


















          2














          Using dconf-editor



          The option to change the shortcut keys to switch workspace up, down, left or right (the latter not applicable in default gnome shell) indeed are not exposed in that dialog. You still can change these keyboard assignments by installing dconf-editor. Navigate to org.gnome.desktop.wm.keybindings to find all these window manager related keybindings. You will be able to remove all <Control><Alt><Arrow key> combinations there, leaving alternative keybindings, i.e., <Super>Page_Down and <Super>Page_Up in place.



          Using the terminal



          Settings can also be changed using the terminal. For example, to list all available keys, issue the command



          gsettings list-keys org.gnome.desktop.wm.keybindings 


          To learn about what a key contains:



          gsettings get org.gnome.desktop.wm.keybindings switch-to-workspace-down


          (Tip: Tab-completion works to complete the names of the schema's and keys)



          To remove <Control><Alt><Down>, redefine the key:



          gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-down ['<Super>Page_Down']


          To reset to default:



          gsettings reset org.gnome.desktop.wm.keybindings switch-to-workspace-down





          share|improve this answer
























          • Perfect! Dconf did exactly the trick! Though, I'm a bit confused why it didn't show up on the regular key-bindings section, especially since I believe I was able to see and change it there on a different computer....

            – user1015214
            Jan 11 at 13:54











          • Might have been taken out between Gnome Shell versions, or you just may have had the wrong impression indeed.

            – vanadium
            Jan 11 at 20:28
















          2












          2








          2







          Using dconf-editor



          The option to change the shortcut keys to switch workspace up, down, left or right (the latter not applicable in default gnome shell) indeed are not exposed in that dialog. You still can change these keyboard assignments by installing dconf-editor. Navigate to org.gnome.desktop.wm.keybindings to find all these window manager related keybindings. You will be able to remove all <Control><Alt><Arrow key> combinations there, leaving alternative keybindings, i.e., <Super>Page_Down and <Super>Page_Up in place.



          Using the terminal



          Settings can also be changed using the terminal. For example, to list all available keys, issue the command



          gsettings list-keys org.gnome.desktop.wm.keybindings 


          To learn about what a key contains:



          gsettings get org.gnome.desktop.wm.keybindings switch-to-workspace-down


          (Tip: Tab-completion works to complete the names of the schema's and keys)



          To remove <Control><Alt><Down>, redefine the key:



          gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-down ['<Super>Page_Down']


          To reset to default:



          gsettings reset org.gnome.desktop.wm.keybindings switch-to-workspace-down





          share|improve this answer













          Using dconf-editor



          The option to change the shortcut keys to switch workspace up, down, left or right (the latter not applicable in default gnome shell) indeed are not exposed in that dialog. You still can change these keyboard assignments by installing dconf-editor. Navigate to org.gnome.desktop.wm.keybindings to find all these window manager related keybindings. You will be able to remove all <Control><Alt><Arrow key> combinations there, leaving alternative keybindings, i.e., <Super>Page_Down and <Super>Page_Up in place.



          Using the terminal



          Settings can also be changed using the terminal. For example, to list all available keys, issue the command



          gsettings list-keys org.gnome.desktop.wm.keybindings 


          To learn about what a key contains:



          gsettings get org.gnome.desktop.wm.keybindings switch-to-workspace-down


          (Tip: Tab-completion works to complete the names of the schema's and keys)



          To remove <Control><Alt><Down>, redefine the key:



          gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-down ['<Super>Page_Down']


          To reset to default:



          gsettings reset org.gnome.desktop.wm.keybindings switch-to-workspace-down






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jan 11 at 11:58









          vanadiumvanadium

          5,50011229




          5,50011229













          • Perfect! Dconf did exactly the trick! Though, I'm a bit confused why it didn't show up on the regular key-bindings section, especially since I believe I was able to see and change it there on a different computer....

            – user1015214
            Jan 11 at 13:54











          • Might have been taken out between Gnome Shell versions, or you just may have had the wrong impression indeed.

            – vanadium
            Jan 11 at 20:28





















          • Perfect! Dconf did exactly the trick! Though, I'm a bit confused why it didn't show up on the regular key-bindings section, especially since I believe I was able to see and change it there on a different computer....

            – user1015214
            Jan 11 at 13:54











          • Might have been taken out between Gnome Shell versions, or you just may have had the wrong impression indeed.

            – vanadium
            Jan 11 at 20:28



















          Perfect! Dconf did exactly the trick! Though, I'm a bit confused why it didn't show up on the regular key-bindings section, especially since I believe I was able to see and change it there on a different computer....

          – user1015214
          Jan 11 at 13:54





          Perfect! Dconf did exactly the trick! Though, I'm a bit confused why it didn't show up on the regular key-bindings section, especially since I believe I was able to see and change it there on a different computer....

          – user1015214
          Jan 11 at 13:54













          Might have been taken out between Gnome Shell versions, or you just may have had the wrong impression indeed.

          – vanadium
          Jan 11 at 20:28







          Might have been taken out between Gnome Shell versions, or you just may have had the wrong impression indeed.

          – vanadium
          Jan 11 at 20:28




















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Ask Ubuntu!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1108690%2fcant-find-switch-to-workspace-action-listed-in-keyboard-shortcuts%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Mouse cursor on multiple screens with different PPI

          Agildo Ribeiro

          Sometime when accessing a menu: “Ubuntu 16.04 has experienced an internal error”