Make “super/window” as compose key in Ubuntu












3















Somehow on my new X230t Lenovo Thinkpad, Ubuntu 13.10 only lets me have the following options as the compose key:



Right Alt, Right Ctrl, Left Alt, Right Win, Menu, Caps Lock



I really don't care for Unity's functions using Super. I would like to set this as my compose key. Is there any way to manage this?



UPDATE: This solution had been working like a charm for me, until today when Ubuntu did a fateful update. I looked at the d-conf editor for the entry below. It still shows compose:lwin as an option. But Left Window is no longer available as an option in the keyboard settings. Any suggestions? (I am using Ubuntu 14.04 now)










share|improve this question





























    3















    Somehow on my new X230t Lenovo Thinkpad, Ubuntu 13.10 only lets me have the following options as the compose key:



    Right Alt, Right Ctrl, Left Alt, Right Win, Menu, Caps Lock



    I really don't care for Unity's functions using Super. I would like to set this as my compose key. Is there any way to manage this?



    UPDATE: This solution had been working like a charm for me, until today when Ubuntu did a fateful update. I looked at the d-conf editor for the entry below. It still shows compose:lwin as an option. But Left Window is no longer available as an option in the keyboard settings. Any suggestions? (I am using Ubuntu 14.04 now)










    share|improve this question



























      3












      3








      3


      2






      Somehow on my new X230t Lenovo Thinkpad, Ubuntu 13.10 only lets me have the following options as the compose key:



      Right Alt, Right Ctrl, Left Alt, Right Win, Menu, Caps Lock



      I really don't care for Unity's functions using Super. I would like to set this as my compose key. Is there any way to manage this?



      UPDATE: This solution had been working like a charm for me, until today when Ubuntu did a fateful update. I looked at the d-conf editor for the entry below. It still shows compose:lwin as an option. But Left Window is no longer available as an option in the keyboard settings. Any suggestions? (I am using Ubuntu 14.04 now)










      share|improve this question
















      Somehow on my new X230t Lenovo Thinkpad, Ubuntu 13.10 only lets me have the following options as the compose key:



      Right Alt, Right Ctrl, Left Alt, Right Win, Menu, Caps Lock



      I really don't care for Unity's functions using Super. I would like to set this as my compose key. Is there any way to manage this?



      UPDATE: This solution had been working like a charm for me, until today when Ubuntu did a fateful update. I looked at the d-conf editor for the entry below. It still shows compose:lwin as an option. But Left Window is no longer available as an option in the keyboard settings. Any suggestions? (I am using Ubuntu 14.04 now)







      keyboard keyboard-layout thinkpad






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Feb 15 at 18:39









      Anthony Geoghegan

      1,058916




      1,058916










      asked Nov 20 '13 at 2:01









      vnkvnk

      355




      355






















          1 Answer
          1






          active

          oldest

          votes


















          9














          You can do this through the dconf-editor. If you do not already have it installed, you can install it with:



          sudo apt-get install dconf-editor


          Navigate to org >> gnome >> desktop >> input-sources



          Click in the setting, xkb-options and add 'compose:lwin' inside the square brackets. The single quotes are required.



          If other options are already there, the order does not matter; but separate the options with a comma: 'compose:lwin','other:option'



          For those who looks for a command line solution (without installing dconf-editor) you can use:



          $ dconf read /org/gnome/desktop/input-sources/xkb-options 
          @as


          This will tell you the current state of the key. Now you can insert your own:



          dconf write /org/gnome/desktop/input-sources/xkb-options ['compose:lwin']


          This command as above worked fine for me, but @bryce reports that he needed double quotes, as in:



          dconf write /org/gnome/desktop/input-sources/xkb-options "['compose:lwin']"





          share|improve this answer


























          • I needed to double quote the value. dconf write /org/gnome/desktop/input-sources/xkb-options "['compose:lwin']"

            – Bryce
            Sep 16 '15 at 20:41











          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%2f379633%2fmake-super-window-as-compose-key-in-ubuntu%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









          9














          You can do this through the dconf-editor. If you do not already have it installed, you can install it with:



          sudo apt-get install dconf-editor


          Navigate to org >> gnome >> desktop >> input-sources



          Click in the setting, xkb-options and add 'compose:lwin' inside the square brackets. The single quotes are required.



          If other options are already there, the order does not matter; but separate the options with a comma: 'compose:lwin','other:option'



          For those who looks for a command line solution (without installing dconf-editor) you can use:



          $ dconf read /org/gnome/desktop/input-sources/xkb-options 
          @as


          This will tell you the current state of the key. Now you can insert your own:



          dconf write /org/gnome/desktop/input-sources/xkb-options ['compose:lwin']


          This command as above worked fine for me, but @bryce reports that he needed double quotes, as in:



          dconf write /org/gnome/desktop/input-sources/xkb-options "['compose:lwin']"





          share|improve this answer


























          • I needed to double quote the value. dconf write /org/gnome/desktop/input-sources/xkb-options "['compose:lwin']"

            – Bryce
            Sep 16 '15 at 20:41
















          9














          You can do this through the dconf-editor. If you do not already have it installed, you can install it with:



          sudo apt-get install dconf-editor


          Navigate to org >> gnome >> desktop >> input-sources



          Click in the setting, xkb-options and add 'compose:lwin' inside the square brackets. The single quotes are required.



          If other options are already there, the order does not matter; but separate the options with a comma: 'compose:lwin','other:option'



          For those who looks for a command line solution (without installing dconf-editor) you can use:



          $ dconf read /org/gnome/desktop/input-sources/xkb-options 
          @as


          This will tell you the current state of the key. Now you can insert your own:



          dconf write /org/gnome/desktop/input-sources/xkb-options ['compose:lwin']


          This command as above worked fine for me, but @bryce reports that he needed double quotes, as in:



          dconf write /org/gnome/desktop/input-sources/xkb-options "['compose:lwin']"





          share|improve this answer


























          • I needed to double quote the value. dconf write /org/gnome/desktop/input-sources/xkb-options "['compose:lwin']"

            – Bryce
            Sep 16 '15 at 20:41














          9












          9








          9







          You can do this through the dconf-editor. If you do not already have it installed, you can install it with:



          sudo apt-get install dconf-editor


          Navigate to org >> gnome >> desktop >> input-sources



          Click in the setting, xkb-options and add 'compose:lwin' inside the square brackets. The single quotes are required.



          If other options are already there, the order does not matter; but separate the options with a comma: 'compose:lwin','other:option'



          For those who looks for a command line solution (without installing dconf-editor) you can use:



          $ dconf read /org/gnome/desktop/input-sources/xkb-options 
          @as


          This will tell you the current state of the key. Now you can insert your own:



          dconf write /org/gnome/desktop/input-sources/xkb-options ['compose:lwin']


          This command as above worked fine for me, but @bryce reports that he needed double quotes, as in:



          dconf write /org/gnome/desktop/input-sources/xkb-options "['compose:lwin']"





          share|improve this answer















          You can do this through the dconf-editor. If you do not already have it installed, you can install it with:



          sudo apt-get install dconf-editor


          Navigate to org >> gnome >> desktop >> input-sources



          Click in the setting, xkb-options and add 'compose:lwin' inside the square brackets. The single quotes are required.



          If other options are already there, the order does not matter; but separate the options with a comma: 'compose:lwin','other:option'



          For those who looks for a command line solution (without installing dconf-editor) you can use:



          $ dconf read /org/gnome/desktop/input-sources/xkb-options 
          @as


          This will tell you the current state of the key. Now you can insert your own:



          dconf write /org/gnome/desktop/input-sources/xkb-options ['compose:lwin']


          This command as above worked fine for me, but @bryce reports that he needed double quotes, as in:



          dconf write /org/gnome/desktop/input-sources/xkb-options "['compose:lwin']"






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Sep 18 '15 at 1:40

























          answered Nov 20 '13 at 3:04









          chaskeschaskes

          13.3k74359




          13.3k74359













          • I needed to double quote the value. dconf write /org/gnome/desktop/input-sources/xkb-options "['compose:lwin']"

            – Bryce
            Sep 16 '15 at 20:41



















          • I needed to double quote the value. dconf write /org/gnome/desktop/input-sources/xkb-options "['compose:lwin']"

            – Bryce
            Sep 16 '15 at 20:41

















          I needed to double quote the value. dconf write /org/gnome/desktop/input-sources/xkb-options "['compose:lwin']"

          – Bryce
          Sep 16 '15 at 20:41





          I needed to double quote the value. dconf write /org/gnome/desktop/input-sources/xkb-options "['compose:lwin']"

          – Bryce
          Sep 16 '15 at 20:41


















          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%2f379633%2fmake-super-window-as-compose-key-in-ubuntu%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

          How to reconfigure Docker Trusted Registry 2.x.x to use CEPH FS mount instead of NFS and other traditional...

          is 'sed' thread safe

          How to make a Squid Proxy server?