diff options
| author | Robert Günzler <r@gnzler.io> | 2020-06-17 18:38:13 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2020-06-17 18:38:13 +0200 |
| commit | 48fec454e2ae849a06ba6aa10ecaa93e5c1c6f95 (patch) | |
| tree | 66fdf5d5338497afe7a0af9ce9b0a4f9c2bfb81d /.config/waybar | |
| parent | bfb81b2074a3a82fe7223d29b8628c6b2bb1fff3 (diff) | |
waybar: move tray around
Diffstat (limited to '.config/waybar')
| -rw-r--r-- | .config/waybar/config | 2 | ||||
| -rw-r--r-- | .config/waybar/style.css | 33 |
2 files changed, 17 insertions, 18 deletions
diff --git a/.config/waybar/config b/.config/waybar/config index 4a869e4..d56907f 100644 --- a/.config/waybar/config +++ b/.config/waybar/config @@ -6,7 +6,7 @@ "modules-left": ["sway/mode", "sway/workspaces", "sway/window", "custom/media", "custom/toggl"], "modules-center": ["clock#local", "clock#utc"], - "modules-right": ["cpu", "memory", "disk#root", "disk#home", "temperature", "idle_inhibitor", "backlight", "pulseaudio", "network#wg", "network", "battery", "tray"], + "modules-right": ["tray", "cpu", "memory", "disk#root", "disk#home", "temperature", "idle_inhibitor", "backlight", "pulseaudio", "network#wg", "network", "battery"], "sway/workspaces": { "disable-scroll": true, "all-outputs": false, diff --git a/.config/waybar/style.css b/.config/waybar/style.css index 95d2f41..3752247 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -153,6 +153,22 @@ label:focus { color: @dimmed; } +#temperature { +} +#temperature.critical { + background-color: #eb4d4b; +} + +#tray { +} + +#idle_inhibitor { + color: @dimmed; +} +#idle_inhibitor.activated { + color: unset; +} + #custom-media { min-width: 100px; color: @foreground; @@ -172,23 +188,6 @@ label:focus { border-top: 2px solid #DB4D60; } -#temperature { -} - -#temperature.critical { - background-color: #eb4d4b; -} - -#tray { -} - -#idle_inhibitor { - color: @dimmed; -} -#idle_inhibitor.activated { - color: unset; -} - #mpd { } #mpd.disconnected { |