gastori Asked: 2018-11-24 03:29:42 +0800 CST2018-11-24 03:29:42 +0800 CST 2018-11-24 03:29:42 +0800 CST Ubuntu 18.04 Dock mouse hover tooltips - how to disable? 772 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. dock gnome-shell tooltip ubuntu-dock 18.04 2 Answers Voted Best Answer UnKNOWn 2018-11-24T04:21:43+08:002018-11-24T04:21:43+08:00 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. if you use different User-Shell themes, you may find same content and editing it as above. mature 2018-11-24T04:22:16+08:002018-11-24T04:22:16+08:00 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; }
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.
Change it to
save the file & close. Reboot to see the change.
if you use different User-Shell themes, you may find same content and editing it as above.
or
or any text editor launched with sudo..
Search:
.dash-label
You will see something like:
Backup it. Then replace or comment with /* ... */ old and add: