From 69b821eecdcdde201f500f34fe0c69fbe00bd593 Mon Sep 17 00:00:00 2001 From: notgne2 Date: Thu, 23 Dec 2021 05:55:50 -0700 Subject: [PATCH] fuck it, add UTC to waybar --- home-manager/modules/ezpcusr.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/home-manager/modules/ezpcusr.nix b/home-manager/modules/ezpcusr.nix index 3a36bd9..2a4a821 100644 --- a/home-manager/modules/ezpcusr.nix +++ b/home-manager/modules/ezpcusr.nix @@ -369,7 +369,7 @@ in height = null; modules-left = [ "sway/workspaces" "custom/spacer" "custom/weather-temp" "custom/weather-precip" "custom/weather-wind" ]; - modules-center = [ "clock#1" "clock#2" "custom/spacer" "mpd" "custom/spacer" "clock#3" ]; + modules-center = [ "clock#1" "clock#2" "custom/spacer" "mpd" "custom/spacer" "clock#3" "custom/spacer" "clock#4" ]; modules-right = [ "pulseaudio" "custom/spacer" "memory" "custom/spacer" "cpu" ] ++ lib.optionals cfg.battery [ "custom/spacer" "battery" ] ++ [ "custom/spacer" "tray" ]; modules = { @@ -425,6 +425,11 @@ in tooltip = false; format = "{:%I:%M %p}"; }; + "clock#4" = { + tooltip = false; + timezone = "Etc/UTC"; + format = "{:%H:%M} UTC"; + }; pulseaudio = { format = "{icon} {volume}%"; @@ -474,7 +479,7 @@ in } #custom-spacer { - font-size: 15px; + font-size: 12px; color: #${config.colors.base16.base00}; font-weight: bold; margin: 0; @@ -485,6 +490,7 @@ in #clock.1, #clock.2, #clock.3, + #clock.4, #pulseaudio, #memory, #cpu,