删除 Gnome 中的音量 OSD

删除 Gnome 中的音量 OSD

ubuntu 19.04 当我将鼠标滚动到声音图标上时。屏幕中间会弹出音量图标。我只想将其从我的系统中删除。它在看电影时毫无用处而且很烦人。请帮忙

答案1

警告:编辑 gdm3.css 文件/其原始文件时,如果出现小错误,将会出现严重问题...您将无法登录系统...要恢复正常,您需要特殊支持...继续你自己的

以下只是一个临时的解决方法,直到某些专家编写扩展来禁用音量变化的 OSD。

Ubuntu 18.04
用户 shell 主题:/usr/share/gnome-shell/theme/ubuntu.css

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

已经编辑的代码:

/* 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; }

其他地区:

.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; }

您需要留意transparent上面代码中的文字。

查看音量图标的右下角。

在此处输入图片描述

相关内容