是否可以在状态栏中显示音量和无线图标,就像在 Ubuntu 标题栏中一样?
目前我只连接到一个唯一的 Wi-Fi 网络,但将来我需要看到更多的网络。
答案1
对于 WiFi 小程序,您需要软件包network-manager-gnome
。要检查它是否已安装,请执行以下操作:
apt-cache policy network-manager-gnome
并检查是否已安装。
对于音量,您可以在 i3bar 中查看音量百分比。首先i3status.conf
使用以下命令找到文件的位置:
sudo find / -type f -iname .i3status.conf
接下来,将其复制到您选择的任何文件夹。但为了简单起见,我将把它复制到~/.config/i3/
cp /path/to/conffile ~/.config/i3/
接下来,编辑.i3status.conf
文件。对于卷,您应该进行以下编辑:
取消注释此行:
order += "volume master"
另外,取消注释以下几行:
volume master { format = "♪: %volume" format_muted = "♪: muted (%volume)" device = "default" mixer = "Master" mixer_idx = 0 }
接下来,打开config
文件,找到此模式status_command
并将该行替换为以下内容:
status_command i3status -c $HOME/.config/i3/.i3status.conf
如果您想要一个音量小程序而不是仅仅一个显示音量百分比的图标,那么:
转到此Github 页面。
下载 zip。
将其解压到您选择的文件夹中。
按照给出的说明进行编译这里。或者按照以下说明(从链接复制):
Dependencies ============ Those are the dependencies needed to compile pa-applet: * GLib (libglib2.0-dev in Debian) * GTK+ >=3 (libgtk-3-dev in Debian) * libnotify (libnotify-dev in Debian) * libpulse (libpulse-dev in Debian) * Xlib (libx11-dev in Debian) * autoconf * automake * pkg-config Installation instructions ========================= pa-applet uses autotools. If you're downloading from the Git repository, you might need to run autogen.sh before you compile it: $ ./autogen.sh Compiling and installing it is simple enough: $ ./configure --prefix=/foo/bar $ make $ make install
在的末尾~/.config/i3/config
,添加以下几行以使小程序正常运行:
exec_always pa-applet
另外,在nm-applet
上述行的正下方,查找以下行:
tray_output primary
并确保它已被评论。
此外,在小程序末尾添加以下几行~/.config/i3/config
以显示:
exec_always nm-applet
最后,重新启动。