Ubuntu 18.04 Dock mouse hover tooltips - how to disable?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







4















I need to know if it is possible and how to disable the Ubuntu 18.04 Dock tool-tips for mouse hover the pinned application.



Ubuntu Dock










share|improve this question































    4















    I need to know if it is possible and how to disable the Ubuntu 18.04 Dock tool-tips for mouse hover the pinned application.



    Ubuntu Dock










    share|improve this question



























      4












      4








      4


      1






      I need to know if it is possible and how to disable the Ubuntu 18.04 Dock tool-tips for mouse hover the pinned application.



      Ubuntu Dock










      share|improve this question
















      I need to know if it is possible and how to disable the Ubuntu 18.04 Dock tool-tips for mouse hover the pinned application.



      Ubuntu Dock







      18.04 gnome-shell ubuntu-dock dock tooltip






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 9 mins ago









      pomsky

      34k11107139




      34k11107139










      asked Nov 23 '18 at 11:29









      gastorigastori

      283




      283






















          2 Answers
          2






          active

          oldest

          votes


















          3














          there is no direct or simply way to configure what we need in question.

          But it can be done by editing the User Shell theme that is in use.



          if you are using default theme in 18.04, below is the way to achieve.



          first take back up of /usr/share/gnome-shell/theme/ubuntu.css file.



          now open the file with you favorite text editor, mine is gedit, so



          sudo -H gedit /usr/share/gnome-shell/theme/ubuntu.css



          go to line number 1205 and find the below content.



          .dash-label {
          border-radius: 7px;
          padding: 4px 12px;
          color: #eeeeec;
          background-color: rgba(46, 52, 54, 0.7);
          text-align: center;
          -x-offset: 8px; }


          Change it to



          .dash-label {
          border-radius: 7px;
          padding: 4px 12px;
          color: #eeeeec;
          background-color: none;
          font-size: 0pt;
          text-align: center;
          -x-offset: 8px; }


          save the file & close. Reboot to see the change.



          enter image description here



          if you use different User-Shell themes, you may find same content and editing it as above.






          share|improve this answer


























          • Got it done ... i made a copy if the file content as backup version and i apply the changes as stated .. after rebooting Tooltips were gone ..

            – gastori
            Nov 23 '18 at 13:19











          • @PRATAP, very nice touch. Probably you best recommend to edit the original file, which is /usr/share/gnome-shell/theme/gnome-shell.css. All other files link to that one. Yet, the header of the file says " do not edit because the file is generated. There might be a better and more persistent way to effectuate the change (aka editing another file). Yet, for now, the hack may do the job.

            – vanadium
            Nov 23 '18 at 14:31











          • is it possible to set a timeout instead of completely hiding the tooltips?

            – Navaro
            Feb 19 at 21:40











          • oh sorry the timeout is hardcoded..

            – PRATAP
            Feb 20 at 3:58











          • @Navaro on hover you want the tool-tip to show for certain seconds and disapper even mouse is hovered on it for few minutes.. like that?

            – PRATAP
            Feb 20 at 8:28



















          0














          sudo vim /usr/share/gnome-shell/theme/ubuntu.css


          or



          sudo nano /usr/share/gnome-shell/theme/ubuntu.css


          or any text editor launched with sudo..



          Search: .dash-label



          You will see something like:



          .dash-label {
          border-radius: 7px;
          padding: 4px 12px;
          color: #eeeeec;
          background-color: rgba(0, 0, 0, 0.7);
          text-align: center;
          -x-offset: 8px;
          }


          Backup it. Then replace or comment with /* ... */ old and add:



          .dash-label {
          font-size: 0;
          }





          share|improve this answer
























          • S_Flash .. i followed the instruction from PRATAP .. but I have a question??? the file you are suggesting is pretty much the same but it is in different path and is the ubuntu.css .. what is the main difference ..

            – gastori
            Nov 23 '18 at 13:20













          • Somme tweak tools, extensions can use backup css + some themes can use different names and path's.

            – mature
            Nov 23 '18 at 13:47











          • Thanks .. I appreciate .. both of you were very helpful ..

            – gastori
            Nov 23 '18 at 13:59












          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%2f1095353%2fubuntu-18-04-dock-mouse-hover-tooltips-how-to-disable%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          3














          there is no direct or simply way to configure what we need in question.

          But it can be done by editing the User Shell theme that is in use.



          if you are using default theme in 18.04, below is the way to achieve.



          first take back up of /usr/share/gnome-shell/theme/ubuntu.css file.



          now open the file with you favorite text editor, mine is gedit, so



          sudo -H gedit /usr/share/gnome-shell/theme/ubuntu.css



          go to line number 1205 and find the below content.



          .dash-label {
          border-radius: 7px;
          padding: 4px 12px;
          color: #eeeeec;
          background-color: rgba(46, 52, 54, 0.7);
          text-align: center;
          -x-offset: 8px; }


          Change it to



          .dash-label {
          border-radius: 7px;
          padding: 4px 12px;
          color: #eeeeec;
          background-color: none;
          font-size: 0pt;
          text-align: center;
          -x-offset: 8px; }


          save the file & close. Reboot to see the change.



          enter image description here



          if you use different User-Shell themes, you may find same content and editing it as above.






          share|improve this answer


























          • Got it done ... i made a copy if the file content as backup version and i apply the changes as stated .. after rebooting Tooltips were gone ..

            – gastori
            Nov 23 '18 at 13:19











          • @PRATAP, very nice touch. Probably you best recommend to edit the original file, which is /usr/share/gnome-shell/theme/gnome-shell.css. All other files link to that one. Yet, the header of the file says " do not edit because the file is generated. There might be a better and more persistent way to effectuate the change (aka editing another file). Yet, for now, the hack may do the job.

            – vanadium
            Nov 23 '18 at 14:31











          • is it possible to set a timeout instead of completely hiding the tooltips?

            – Navaro
            Feb 19 at 21:40











          • oh sorry the timeout is hardcoded..

            – PRATAP
            Feb 20 at 3:58











          • @Navaro on hover you want the tool-tip to show for certain seconds and disapper even mouse is hovered on it for few minutes.. like that?

            – PRATAP
            Feb 20 at 8:28
















          3














          there is no direct or simply way to configure what we need in question.

          But it can be done by editing the User Shell theme that is in use.



          if you are using default theme in 18.04, below is the way to achieve.



          first take back up of /usr/share/gnome-shell/theme/ubuntu.css file.



          now open the file with you favorite text editor, mine is gedit, so



          sudo -H gedit /usr/share/gnome-shell/theme/ubuntu.css



          go to line number 1205 and find the below content.



          .dash-label {
          border-radius: 7px;
          padding: 4px 12px;
          color: #eeeeec;
          background-color: rgba(46, 52, 54, 0.7);
          text-align: center;
          -x-offset: 8px; }


          Change it to



          .dash-label {
          border-radius: 7px;
          padding: 4px 12px;
          color: #eeeeec;
          background-color: none;
          font-size: 0pt;
          text-align: center;
          -x-offset: 8px; }


          save the file & close. Reboot to see the change.



          enter image description here



          if you use different User-Shell themes, you may find same content and editing it as above.






          share|improve this answer


























          • Got it done ... i made a copy if the file content as backup version and i apply the changes as stated .. after rebooting Tooltips were gone ..

            – gastori
            Nov 23 '18 at 13:19











          • @PRATAP, very nice touch. Probably you best recommend to edit the original file, which is /usr/share/gnome-shell/theme/gnome-shell.css. All other files link to that one. Yet, the header of the file says " do not edit because the file is generated. There might be a better and more persistent way to effectuate the change (aka editing another file). Yet, for now, the hack may do the job.

            – vanadium
            Nov 23 '18 at 14:31











          • is it possible to set a timeout instead of completely hiding the tooltips?

            – Navaro
            Feb 19 at 21:40











          • oh sorry the timeout is hardcoded..

            – PRATAP
            Feb 20 at 3:58











          • @Navaro on hover you want the tool-tip to show for certain seconds and disapper even mouse is hovered on it for few minutes.. like that?

            – PRATAP
            Feb 20 at 8:28














          3












          3








          3







          there is no direct or simply way to configure what we need in question.

          But it can be done by editing the User Shell theme that is in use.



          if you are using default theme in 18.04, below is the way to achieve.



          first take back up of /usr/share/gnome-shell/theme/ubuntu.css file.



          now open the file with you favorite text editor, mine is gedit, so



          sudo -H gedit /usr/share/gnome-shell/theme/ubuntu.css



          go to line number 1205 and find the below content.



          .dash-label {
          border-radius: 7px;
          padding: 4px 12px;
          color: #eeeeec;
          background-color: rgba(46, 52, 54, 0.7);
          text-align: center;
          -x-offset: 8px; }


          Change it to



          .dash-label {
          border-radius: 7px;
          padding: 4px 12px;
          color: #eeeeec;
          background-color: none;
          font-size: 0pt;
          text-align: center;
          -x-offset: 8px; }


          save the file & close. Reboot to see the change.



          enter image description here



          if you use different User-Shell themes, you may find same content and editing it as above.






          share|improve this answer















          there is no direct or simply way to configure what we need in question.

          But it can be done by editing the User Shell theme that is in use.



          if you are using default theme in 18.04, below is the way to achieve.



          first take back up of /usr/share/gnome-shell/theme/ubuntu.css file.



          now open the file with you favorite text editor, mine is gedit, so



          sudo -H gedit /usr/share/gnome-shell/theme/ubuntu.css



          go to line number 1205 and find the below content.



          .dash-label {
          border-radius: 7px;
          padding: 4px 12px;
          color: #eeeeec;
          background-color: rgba(46, 52, 54, 0.7);
          text-align: center;
          -x-offset: 8px; }


          Change it to



          .dash-label {
          border-radius: 7px;
          padding: 4px 12px;
          color: #eeeeec;
          background-color: none;
          font-size: 0pt;
          text-align: center;
          -x-offset: 8px; }


          save the file & close. Reboot to see the change.



          enter image description here



          if you use different User-Shell themes, you may find same content and editing it as above.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 13 at 10:25

























          answered Nov 23 '18 at 12:21









          PRATAPPRATAP

          3,6902933




          3,6902933













          • Got it done ... i made a copy if the file content as backup version and i apply the changes as stated .. after rebooting Tooltips were gone ..

            – gastori
            Nov 23 '18 at 13:19











          • @PRATAP, very nice touch. Probably you best recommend to edit the original file, which is /usr/share/gnome-shell/theme/gnome-shell.css. All other files link to that one. Yet, the header of the file says " do not edit because the file is generated. There might be a better and more persistent way to effectuate the change (aka editing another file). Yet, for now, the hack may do the job.

            – vanadium
            Nov 23 '18 at 14:31











          • is it possible to set a timeout instead of completely hiding the tooltips?

            – Navaro
            Feb 19 at 21:40











          • oh sorry the timeout is hardcoded..

            – PRATAP
            Feb 20 at 3:58











          • @Navaro on hover you want the tool-tip to show for certain seconds and disapper even mouse is hovered on it for few minutes.. like that?

            – PRATAP
            Feb 20 at 8:28



















          • Got it done ... i made a copy if the file content as backup version and i apply the changes as stated .. after rebooting Tooltips were gone ..

            – gastori
            Nov 23 '18 at 13:19











          • @PRATAP, very nice touch. Probably you best recommend to edit the original file, which is /usr/share/gnome-shell/theme/gnome-shell.css. All other files link to that one. Yet, the header of the file says " do not edit because the file is generated. There might be a better and more persistent way to effectuate the change (aka editing another file). Yet, for now, the hack may do the job.

            – vanadium
            Nov 23 '18 at 14:31











          • is it possible to set a timeout instead of completely hiding the tooltips?

            – Navaro
            Feb 19 at 21:40











          • oh sorry the timeout is hardcoded..

            – PRATAP
            Feb 20 at 3:58











          • @Navaro on hover you want the tool-tip to show for certain seconds and disapper even mouse is hovered on it for few minutes.. like that?

            – PRATAP
            Feb 20 at 8:28

















          Got it done ... i made a copy if the file content as backup version and i apply the changes as stated .. after rebooting Tooltips were gone ..

          – gastori
          Nov 23 '18 at 13:19





          Got it done ... i made a copy if the file content as backup version and i apply the changes as stated .. after rebooting Tooltips were gone ..

          – gastori
          Nov 23 '18 at 13:19













          @PRATAP, very nice touch. Probably you best recommend to edit the original file, which is /usr/share/gnome-shell/theme/gnome-shell.css. All other files link to that one. Yet, the header of the file says " do not edit because the file is generated. There might be a better and more persistent way to effectuate the change (aka editing another file). Yet, for now, the hack may do the job.

          – vanadium
          Nov 23 '18 at 14:31





          @PRATAP, very nice touch. Probably you best recommend to edit the original file, which is /usr/share/gnome-shell/theme/gnome-shell.css. All other files link to that one. Yet, the header of the file says " do not edit because the file is generated. There might be a better and more persistent way to effectuate the change (aka editing another file). Yet, for now, the hack may do the job.

          – vanadium
          Nov 23 '18 at 14:31













          is it possible to set a timeout instead of completely hiding the tooltips?

          – Navaro
          Feb 19 at 21:40





          is it possible to set a timeout instead of completely hiding the tooltips?

          – Navaro
          Feb 19 at 21:40













          oh sorry the timeout is hardcoded..

          – PRATAP
          Feb 20 at 3:58





          oh sorry the timeout is hardcoded..

          – PRATAP
          Feb 20 at 3:58













          @Navaro on hover you want the tool-tip to show for certain seconds and disapper even mouse is hovered on it for few minutes.. like that?

          – PRATAP
          Feb 20 at 8:28





          @Navaro on hover you want the tool-tip to show for certain seconds and disapper even mouse is hovered on it for few minutes.. like that?

          – PRATAP
          Feb 20 at 8:28













          0














          sudo vim /usr/share/gnome-shell/theme/ubuntu.css


          or



          sudo nano /usr/share/gnome-shell/theme/ubuntu.css


          or any text editor launched with sudo..



          Search: .dash-label



          You will see something like:



          .dash-label {
          border-radius: 7px;
          padding: 4px 12px;
          color: #eeeeec;
          background-color: rgba(0, 0, 0, 0.7);
          text-align: center;
          -x-offset: 8px;
          }


          Backup it. Then replace or comment with /* ... */ old and add:



          .dash-label {
          font-size: 0;
          }





          share|improve this answer
























          • S_Flash .. i followed the instruction from PRATAP .. but I have a question??? the file you are suggesting is pretty much the same but it is in different path and is the ubuntu.css .. what is the main difference ..

            – gastori
            Nov 23 '18 at 13:20













          • Somme tweak tools, extensions can use backup css + some themes can use different names and path's.

            – mature
            Nov 23 '18 at 13:47











          • Thanks .. I appreciate .. both of you were very helpful ..

            – gastori
            Nov 23 '18 at 13:59
















          0














          sudo vim /usr/share/gnome-shell/theme/ubuntu.css


          or



          sudo nano /usr/share/gnome-shell/theme/ubuntu.css


          or any text editor launched with sudo..



          Search: .dash-label



          You will see something like:



          .dash-label {
          border-radius: 7px;
          padding: 4px 12px;
          color: #eeeeec;
          background-color: rgba(0, 0, 0, 0.7);
          text-align: center;
          -x-offset: 8px;
          }


          Backup it. Then replace or comment with /* ... */ old and add:



          .dash-label {
          font-size: 0;
          }





          share|improve this answer
























          • S_Flash .. i followed the instruction from PRATAP .. but I have a question??? the file you are suggesting is pretty much the same but it is in different path and is the ubuntu.css .. what is the main difference ..

            – gastori
            Nov 23 '18 at 13:20













          • Somme tweak tools, extensions can use backup css + some themes can use different names and path's.

            – mature
            Nov 23 '18 at 13:47











          • Thanks .. I appreciate .. both of you were very helpful ..

            – gastori
            Nov 23 '18 at 13:59














          0












          0








          0







          sudo vim /usr/share/gnome-shell/theme/ubuntu.css


          or



          sudo nano /usr/share/gnome-shell/theme/ubuntu.css


          or any text editor launched with sudo..



          Search: .dash-label



          You will see something like:



          .dash-label {
          border-radius: 7px;
          padding: 4px 12px;
          color: #eeeeec;
          background-color: rgba(0, 0, 0, 0.7);
          text-align: center;
          -x-offset: 8px;
          }


          Backup it. Then replace or comment with /* ... */ old and add:



          .dash-label {
          font-size: 0;
          }





          share|improve this answer













          sudo vim /usr/share/gnome-shell/theme/ubuntu.css


          or



          sudo nano /usr/share/gnome-shell/theme/ubuntu.css


          or any text editor launched with sudo..



          Search: .dash-label



          You will see something like:



          .dash-label {
          border-radius: 7px;
          padding: 4px 12px;
          color: #eeeeec;
          background-color: rgba(0, 0, 0, 0.7);
          text-align: center;
          -x-offset: 8px;
          }


          Backup it. Then replace or comment with /* ... */ old and add:



          .dash-label {
          font-size: 0;
          }






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 23 '18 at 12:22









          maturemature

          2,2604934




          2,2604934













          • S_Flash .. i followed the instruction from PRATAP .. but I have a question??? the file you are suggesting is pretty much the same but it is in different path and is the ubuntu.css .. what is the main difference ..

            – gastori
            Nov 23 '18 at 13:20













          • Somme tweak tools, extensions can use backup css + some themes can use different names and path's.

            – mature
            Nov 23 '18 at 13:47











          • Thanks .. I appreciate .. both of you were very helpful ..

            – gastori
            Nov 23 '18 at 13:59



















          • S_Flash .. i followed the instruction from PRATAP .. but I have a question??? the file you are suggesting is pretty much the same but it is in different path and is the ubuntu.css .. what is the main difference ..

            – gastori
            Nov 23 '18 at 13:20













          • Somme tweak tools, extensions can use backup css + some themes can use different names and path's.

            – mature
            Nov 23 '18 at 13:47











          • Thanks .. I appreciate .. both of you were very helpful ..

            – gastori
            Nov 23 '18 at 13:59

















          S_Flash .. i followed the instruction from PRATAP .. but I have a question??? the file you are suggesting is pretty much the same but it is in different path and is the ubuntu.css .. what is the main difference ..

          – gastori
          Nov 23 '18 at 13:20







          S_Flash .. i followed the instruction from PRATAP .. but I have a question??? the file you are suggesting is pretty much the same but it is in different path and is the ubuntu.css .. what is the main difference ..

          – gastori
          Nov 23 '18 at 13:20















          Somme tweak tools, extensions can use backup css + some themes can use different names and path's.

          – mature
          Nov 23 '18 at 13:47





          Somme tweak tools, extensions can use backup css + some themes can use different names and path's.

          – mature
          Nov 23 '18 at 13:47













          Thanks .. I appreciate .. both of you were very helpful ..

          – gastori
          Nov 23 '18 at 13:59





          Thanks .. I appreciate .. both of you were very helpful ..

          – gastori
          Nov 23 '18 at 13:59


















          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%2f1095353%2fubuntu-18-04-dock-mouse-hover-tooltips-how-to-disable%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

          GameSpot

          connect to host localhost port 22: Connection refused

          Getting a Wifi WPA2 wifi connection