From 2ee20a2698b73db569594f5a9370d1aea599c64e Mon Sep 17 00:00:00 2001 From: liv Date: Tue, 13 Aug 2024 13:08:30 +0200 Subject: [PATCH] add basic waybar setup --- home/common/desktop/default.nix | 1 + home/common/desktop/waybar.nix | 75 +++++++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 home/common/desktop/waybar.nix diff --git a/home/common/desktop/default.nix b/home/common/desktop/default.nix index 7f87055..9997e6a 100644 --- a/home/common/desktop/default.nix +++ b/home/common/desktop/default.nix @@ -6,6 +6,7 @@ ./gtk.nix ./mako.nix ./wofi.nix + ./waybar.nix ]; home.packages = with pkgs; [ diff --git a/home/common/desktop/waybar.nix b/home/common/desktop/waybar.nix new file mode 100644 index 0000000..c643f3e --- /dev/null +++ b/home/common/desktop/waybar.nix @@ -0,0 +1,75 @@ +{ + config, ... +}: { + systemd.user.services.waybar = { + Unit.StartLimitBurst = 30; + }; + + programs.waybar = { + enable = true; + systemd.enable = true; + settings = { + primary = { + # exclusive = false; + # passthrough = false; + height = 40; + position = "top"; + margin-top = 6; + margin-left = 6; + margin-right = 6; + modules-left = [ + "hyprland/workspaces" + "hyprland/submap" + ]; + + modules-center = [ + "cpu" + "memory" + "clock" + ]; + + modules-right = [ + "tray" + "network" + "pulseaudio" + "battery" + ]; + }; + }; + + style = let + inherit (config.lib.stylix.colors) withHashtag; + in '' + * { + font-family: ${config.fontProfiles.regular.family}, ${config.fontProfiles.monospace.family}; + font-size: 12pt; + padding: 0; + margin: 0 0.4em; + } + + window#waybar { + padding: 0; + border-radius: 0.5em; + } + + .modules-left { + margin-left: -0.65em; + } + .modules-right { + margin-right: -0.65em; + } + + #workspaces button { + padding-left: 0.4em; + padding-right: 0.4em; + margin-top: 0.15em; + margin-bottom: 0.15em; + } + + #workspaces button.active, + #workspaces button.focused { + background-color: ${withHashtag.base08}; + } + ''; + }; +}