1

ubuntu 19.04 when I scroll the mouse over the sound icon. in the middle of the screen pop up volume icon. I just want to remove it from my system. it is useless and disturbing while watching movies. please help

hep 365
  • 103

1 Answers1

1

Warning: Editing gdm3.css file/ its orginal files have serious issues if small mistakes are occurred while editing.. you can not login to your system.. to bring back the things to normal you need special support.. Proceed with your own

Below is just a temporary workaround until some expert writes extension to disable the OSD for Volume Change..

Ubuntu 18.04
user-shell-theme: /usr/share/gnome-shell/theme/ubuntu.css

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

already edited code:

/* OSD */
.osd-window {
  text-align: center;
  font-weight: bold;
  spacing: 1em;
  margin: 32px;
  min-width: 64px;
  min-height: 64px; }
  .osd-window .osd-monitor-label {
    font-size: 3em; }
  .osd-window .level {
    height: 0.6em;
    border-radius: 0.3em;
    background-color: transparent;
    color: transparent; }
  .osd-window .level-bar {
    background-color: transparent;
    border-radius: 0.3em; }

Other Area:

.osd-window

      { color: transparent;
      background-color: transparent;
      border: 1px solid transparent;
      border-radius: 12px;
      padding: 12px; }

    .resize-popup,
    .switcher-list, .workspace-switcher-container {
      color: #eeeeec;
      background-color: #3f3e39;
      border: 1px solid rgba(238, 238, 236, 0.2);
      border-radius: 12px;
      padding: 12px; }

You need to look out for the transparent text in above codes..

look at the bottom right corner on volume icon..

enter image description here

PRATAP
  • 22,460