[eww] Fixes some stuff with the vertical statusbar
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user