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.
Asked
Active
Viewed 2,939 times
2 Answers
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.
if you use different User-Shell themes, you may find same content and editing it as above.
PRATAP-PANABAKA
- 23,201
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;
}
slava
- 4,085

