From c48fd66a196a3de99a23ca4d8949421f064d1c11 Mon Sep 17 00:00:00 2001 From: sefidel Date: Fri, 15 Sep 2023 16:56:11 +0900 Subject: feat(home/gui): waybar: make battery an optional module --- home/profiles/gui/config/waybar/settings.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'home/profiles/gui/config/waybar') diff --git a/home/profiles/gui/config/waybar/settings.nix b/home/profiles/gui/config/waybar/settings.nix index 83b5cf7..1901958 100644 --- a/home/profiles/gui/config/waybar/settings.nix +++ b/home/profiles/gui/config/waybar/settings.nix @@ -1,13 +1,19 @@ -{ neotheme }: +{ config, lib, neotheme }: with neotheme.colors; + +let + guiCfg = config.profiles.gui; +in { layer = "bottom"; position = "top"; height = 22; modules-left = [ "pulseaudio" "custom/separator" "cpu" "custom/separator" "memory" "custom/separator" "idle_inhibitor" ]; modules-center = [ "sway/workspaces" ]; - modules-right = [ "network" "custom/separator" "battery" "custom/separator" "clock" ]; + modules-right = [ "network" "custom/separator" ] + ++ lib.optionals (guiCfg.laptop.enable) [ "battery" "custom/separator" ] + ++ [ "clock" ]; "sway/workspaces" = { all-outputs = true; -- cgit 1.4.1