From 80aea4f709e2030a79ee2b1b7ea3e63b43ec78b3 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 18 Feb 2022 09:27:30 -0800 Subject: waybar: first round of customizations --- users/fcuny/desktop/sway/waybar.nix | 116 +++++++++++++++++++++++++++++------- 1 file changed, 94 insertions(+), 22 deletions(-) (limited to 'users') diff --git a/users/fcuny/desktop/sway/waybar.nix b/users/fcuny/desktop/sway/waybar.nix index 13ee9eb..1e3035f 100644 --- a/users/fcuny/desktop/sway/waybar.nix +++ b/users/fcuny/desktop/sway/waybar.nix @@ -4,26 +4,98 @@ programs.waybar = { enable = true; systemd.enable = true; - settings = [{ - layer = "top"; - position = "top"; - height = 24; - modules-left = ["sway/workspaces" "sway/mode"]; - modules-center = ["sway/window"]; - modules-right = [ "network" "pulseaudio" "clock" ]; - modules = { - "network" = { - format-wifi = "{essid} ({signalStrength}%)"; - format-ethernet = "{ifname}: {ipaddr}/{cidr}"; - format-disconnected = "Disconnected"; - }; - "pulseaudio" = { - format = "{icon} {volume}%"; - }; - "clock" = { - format = "{:%a %d %b %H:%M}"; - }; - }; - }]; -}; + settings = [{ + layer = "top"; + position = "top"; + height = 20; + modules-left = ["sway/workspaces" "sway/mode"]; + modules-center = ["sway/window"]; + modules-right = [ "network" "pulseaudio" "clock" ]; + modules = { + "network" = { + format-wifi = "{essid} ({signalStrength}%)"; + format-ethernet = "{ifname}: {ipaddr}"; + format-disconnected = "Disconnected"; + }; + "pulseaudio" = { + format = "{volume}%"; + }; + "clock" = { + format = "{:%a %d %b %H:%M}"; + }; + }; + }]; + + style = '' + * { + border: none; + border-radius: 0; + min-height: 0; + margin: 0; + padding: 0; + } + + #waybar { + background: #000000; + color: white; + font-family: Source Code Pro; + font-size: 12px; + } + + #clock, + #mode, + #network, + #pulseaudio { + padding-left: 10px; + padding-right: 10px; + } + + #clock { + font-weight: bold; + } + + #mode { + background: #64727D; + border-top: 2px solid white; + padding-bottom: 2px; + } + + #network { + } + + #network.disconnected { + color: orange; + } + + #pulseaudio { + } + + #pulseaudio.muted { + } + + #window { + font-weight: bold; + } + + #workspaces button { + border-top: 2px solid transparent; + /* To compensate for the top border and still have vertical centering */ + padding-bottom: 2px; + padding-left: 10px; + padding-right: 10px; + color: #888888; + } + + #workspaces button.focused { + border-color: #4c7899; + color: white; + background-color: #285577; + } + + #workspaces button.urgent { + border-color: #c9545d; + color: #c9545d; + } + ''; + }; } -- cgit 1.4.1