[eww] Fixes some stuff with the vertical statusbar

This commit is contained in:
2025-04-29 12:16:04 -07:00
parent e405610baf
commit 1153e9086a
3 changed files with 17 additions and 3 deletions

View File

@@ -33,6 +33,16 @@ $color-standout-dark: darker($color-standout);
font-family: 'Noto Sans Nerd Font', sans-serif; font-family: 'Noto Sans Nerd Font', sans-serif;
} }
window.vertical-statusbar {
background-color: $color-background;
// background-image: linear-gradient(160deg, rgba(255,00,00,0.5), $color-background);
color: $color-foreground;
padding: 16px;
font-size: 14px;
border-right: 3px solid $color-border;
font-family: 'Noto Sans Nerd Font', sans-serif;
}
.system-monitor { .system-monitor {
padding-top: 8px; padding-top: 8px;
padding-right: 8px; padding-right: 8px;

View File

@@ -19,9 +19,8 @@
(defwidget vertical-statusbar [] (defwidget vertical-statusbar []
(box (box
:class "statusbar"
:orientation "v" :orientation "v"
:halign "center" :halign "fill"
:spacing 8 :spacing 8
:space-evenly false :space-evenly false
(clock-large) (clock-large)

View File

@@ -1,5 +1,10 @@
{ ... }: { pkgs, ... }:
{ {
home.packages = with pkgs; [
# For Noto Sans NF
nerdfonts
];
programs.eww = { programs.eww = {
enable = true; enable = true;
configDir = ./config; configDir = ./config;