diff options
author | David Runge <dave@sleepmap.de> | 2020-04-18 20:28:57 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2020-04-18 20:28:57 +0200 |
commit | e47d43d6ca8901863f7b688ee78b79e97a43b6b5 (patch) | |
tree | 283cc5a9a5a6250f606701b4368585ded806a209 /.config/waybar/config | |
parent | 6e7726f9d0700e029ab5e5d8e0c80c36307df69c (diff) | |
download | dotfiles-e47d43d6ca8901863f7b688ee78b79e97a43b6b5.tar.gz dotfiles-e47d43d6ca8901863f7b688ee78b79e97a43b6b5.tar.bz2 dotfiles-e47d43d6ca8901863f7b688ee78b79e97a43b6b5.tar.xz dotfiles-e47d43d6ca8901863f7b688ee78b79e97a43b6b5.zip |
Removin battery info, fixing mpd
.config/waybar/config:
Removing the battary status from modules-right, as it's very annoying if
there's no battery.
Fixing the mpd module by removing the format and the tooltips (they
seemed to lead to crashes). Adding server and port information.
Diffstat (limited to '.config/waybar/config')
-rw-r--r-- | .config/waybar/config | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/.config/waybar/config b/.config/waybar/config index fe7b1b8..90d6e3f 100644 --- a/.config/waybar/config +++ b/.config/waybar/config @@ -2,7 +2,7 @@ "layer": "top", // Waybar at top layer "modules-left": ["sway/workspaces", "sway/mode"], "modules-center": ["sway/window"], - "modules-right": ["mpd", "idle_inhibitor", "pulseaudio", "network", "cpu", "memory", "temperature", "battery", "battery#bat2", "backlight", "tray", "clock"], + "modules-right": ["mpd", "idle_inhibitor", "pulseaudio", "network", "cpu", "memory", "temperature", "backlight", "tray", "clock"], "sway/workspaces": { "disable-scroll": true, "all-outputs": true, @@ -26,7 +26,8 @@ "format": "<span style=\"italic\">{}</span>" }, "mpd": { - //"format": "{stateIcon} {consumeIcon}{randomIcon}{repeatIcon}{singleIcon}{artist} - {album} - {title} ({elapsedTime:%M:%S}/{totalTime:%M:%S}) ", + "server": "localhost", + "port": 6600, "format": "{stateIcon} {consumeIcon}{randomIcon}{repeatIcon}{singleIcon}{artist} - {title} ({elapsedTime:%M:%S}/{totalTime:%M:%S}) ", "format-disconnected": "Disconnected ", "format-stopped": "{consumeIcon}{randomIcon}{repeatIcon}{singleIcon}Stopped ", @@ -48,9 +49,7 @@ "state-icons": { "paused": "", "playing": "" - }, - "tooltip-format": "{stateIcon} {consumeIcon}{randomIcon}{repeatIcon}{singleIcon}{artist} - {album} - {title} ({elapsedTime:%M:%S}/{totalTime:%M:%S}) ", - "tooltip-format-disconnected": "MPD (disconnected)" + } }, "idle_inhibitor": { "format": "{icon}", |