From f76bef59d4c8e6bad2443ce10d13c50e668a0df0 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sun, 17 Dec 2023 17:52:14 +0000 Subject: [PATCH] Swap order of battery and clock waybar modules --- Makefile | 3 --- home/hyprland/waybar/default.nix | 2 +- home/hyprland/waybar/style.css | 4 ++-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 23c3a419..3619eb7d 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,3 @@ test: build: sudo nixos-rebuild build --flake . - -switch: - sudo nixos-rebuild switch --flake . diff --git a/home/hyprland/waybar/default.nix b/home/hyprland/waybar/default.nix index e8f6ac8d..13210a17 100644 --- a/home/hyprland/waybar/default.nix +++ b/home/hyprland/waybar/default.nix @@ -24,7 +24,7 @@ ]; "modules-center" = [ ]; "modules-right" = - [ "pulseaudio" "disk" "cpu" "memory" "clock" "battery" "tray" ]; + [ "pulseaudio" "disk" "cpu" "memory" "battery" "clock" "tray" ]; # Module config "custom/separator" = { format = "|"; }; "hyprland/workspaces" = { diff --git a/home/hyprland/waybar/style.css b/home/hyprland/waybar/style.css index 7348892a..9d8d3963 100644 --- a/home/hyprland/waybar/style.css +++ b/home/hyprland/waybar/style.css @@ -82,9 +82,9 @@ tooltip { #memory { color: #7dcfff; } -#clock { +#battery { color: #7aa2f7; } -#battery { +#clock { color: #bb9af7; }