From efaee5859c6ad53f6f6e3cc369154f214775df66 Mon Sep 17 00:00:00 2001 From: xinyangli Date: Sat, 15 Mar 2025 21:03:53 +0800 Subject: [PATCH] calcite: fix build --- home/xin/calcite.nix | 2 +- modules/home-manager/gui/waybar.nix | 61 ++++++++++++++++++++++++++++- 2 files changed, 61 insertions(+), 2 deletions(-) diff --git a/home/xin/calcite.nix b/home/xin/calcite.nix index 8d83d35..d5da659 100644 --- a/home/xin/calcite.nix +++ b/home/xin/calcite.nix @@ -83,7 +83,7 @@ in }; }; vscode = { - enable = true; + enable = false; languages = { cxx = true; python = true; diff --git a/modules/home-manager/gui/waybar.nix b/modules/home-manager/gui/waybar.nix index 5bae584..dae7da5 100644 --- a/modules/home-manager/gui/waybar.nix +++ b/modules/home-manager/gui/waybar.nix @@ -16,7 +16,66 @@ in config = mkIf cfg.enable { programs.waybar = { enable = true; - style = ./waybar.css; + style = '' + * { + font-family: Ubuntu Nerd Font, Noto Sans CJK SC; + font-size: 14px; + font-weight: bold; + min-height: 14px; + } + + window#waybar { + color: @text; + opacity: 0.95; + background-color: @crust; + padding: 2px; + } + + #custom-nixos { + background-color: #24273a; + padding-left: 15px; + padding-right: 18px; + } + + #custom-separator { + margin: 0 2px; + } + + #workspaces { + border-radius: 0; + } + #workspaces button { + padding: 0 10px; + border-radius: 0; + } + #workspaces button.focused, + #workspaces button.active { + border-bottom: 4px solid #8aadf4; + } + #workspaces button.empty { + font-size: 0; + min-width: 0; + min-height: 0; + margin: 0; + padding: 0; + border: 0; + opacity: 0; + box-shadow: none; + } + #cpu, + #memory, + #pulseaudio, + #network, + #backlight, + #battery, + #tray, + #custom-notification { + margin-right: 15px; + } + #clock { + font-size: 16px; + } + ''; settings = { main = { margin = "2px 3px 2 3px";