From ec647eecd447bfbbd8f7b6f2fe5bb65ebf9abf16 Mon Sep 17 00:00:00 2001 From: sefidel Date: Tue, 25 Jul 2023 18:58:27 +0900 Subject: feat(home): split gui from base --- home/profiles/base/config/waybar/settings.nix | 64 --------------------- home/profiles/base/config/waybar/style.nix | 80 --------------------------- 2 files changed, 144 deletions(-) delete mode 100644 home/profiles/base/config/waybar/settings.nix delete mode 100644 home/profiles/base/config/waybar/style.nix (limited to 'home/profiles/base/config/waybar') diff --git a/home/profiles/base/config/waybar/settings.nix b/home/profiles/base/config/waybar/settings.nix deleted file mode 100644 index 86e865a..0000000 --- a/home/profiles/base/config/waybar/settings.nix +++ /dev/null @@ -1,64 +0,0 @@ -{ neotheme }: - -with neotheme.colors; -{ - 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 = [ "battery" "custom/separator" "clock" ]; - - "sway/workspaces" = { - all-outputs = true; - disable-scroll = false; - format = "{name}"; - persistent_workspaces = { - "1:I" = [ ]; - "2:II" = [ ]; - "3:III" = [ ]; - "4:IV" = [ ]; - "5:V" = [ ]; - "6:VI" = [ ]; - "7:VII" = [ ]; - "8:VIII" = [ ]; - "9:IX" = [ ]; - "10:X" = [ ]; - }; - }; - - "clock" = { - interval = 10; - format = "TIME {:%A, %b %d %H:%M}"; - }; - - "cpu" = { - interval = 5; - format = "CPU {usage:2}%"; - }; - - "pulseaudio" = { - format = "VOL {volume}%"; - format-muted = "VOL Muted"; - }; - - "memory" = { - interval = 5; - format = "MEM {used:0.2f}GiB"; - }; - - "battery" = { - format = "BATT {capacity}%"; - format-alt = "PWR {power}Wh"; - }; - - "idle_inhibitor" = { - format = "CAFFEINE {status}"; - }; - - "custom/separator" = { - format = "|"; - interval = "once"; - tooltip = false; - }; -} diff --git a/home/profiles/base/config/waybar/style.nix b/home/profiles/base/config/waybar/style.nix deleted file mode 100644 index d8714ed..0000000 --- a/home/profiles/base/config/waybar/style.nix +++ /dev/null @@ -1,80 +0,0 @@ -{ neotheme }: - -with neotheme.colors; - -'' - * { - border: none; - border-radius: 0; - font-family: "Dina, JetBrainsMono Nerd Font"; - font-size: 12px; - min-height: 0; - } - - window#waybar { - background: #${background}; - color: #${foreground}; - border-bottom: 1px solid #${bright0}; - } - - #workspaces button { - min-width: 0; - padding: 0 8px; - background: #${background}; - color: #${foreground}; - border-bottom: 1px solid #${bright0}; - } - - #workspaces button.focused { - color: #${foreground}; - background-color: #${alt0}; - } - - #workspaces button.urgent { - color: #${color1}; - } - - #workspaces button.persistent { - color: #${alt1}; - } - - #workspaces button:hover { - color: #${foreground}; - background: #${alt1}; - box-shadow: inherit; - text-shadow: inherit; - } - - #clock, - #cpu, - #temperature, - #backlight, - #battery, - #network, - #memory, - #idle_inhibitor, - #language, - #pulseaudio, - #tray, - #mode, - #mpd { - padding: 0.2rem 0.6rem; - margin: 0 2px; - color: #${foreground}; - background-color: #${background}; - border-bottom: 1px solid #${bright0}; - } - - @keyframes blink { - to { - background-color: #${color4}; - color: #${background}; - } - } - - #custom-separator { - color: #${alt1}; - background-color: #${background}; - border-bottom: 1px solid #${bright0}; - } -'' -- cgit 1.4.1