waybar.css now as nix with substitution
This commit is contained in:
parent
ea7effe4f3
commit
20bf16b0c8
5 changed files with 67 additions and 57 deletions
|
@ -41,7 +41,7 @@ in {
|
||||||
programs.waybar = {
|
programs.waybar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = import ./waybar.conf.nix { config = config; };
|
settings = import ./waybar.conf.nix { config = config; };
|
||||||
style = builtins.readFile(./waybar.conf.css);
|
style = (import ./waybar.css.nix { config = config; }).style;
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.swaylock = {
|
programs.swaylock = {
|
||||||
|
|
|
@ -50,8 +50,8 @@
|
||||||
{ proportion = 0.75; }
|
{ proportion = 0.75; }
|
||||||
];
|
];
|
||||||
|
|
||||||
default-column-width = { proportion = 0.25; };
|
default-column-width = { proportion = 0.5; };
|
||||||
gaps = 4;
|
gaps = 16;
|
||||||
};
|
};
|
||||||
|
|
||||||
window-rules = [
|
window-rules = [
|
||||||
|
@ -78,7 +78,7 @@
|
||||||
{ command = ["waybar"]; }
|
{ command = ["waybar"]; }
|
||||||
{ command = ["wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0"]; }
|
{ command = ["wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0"]; }
|
||||||
{ command = ["brightnessctl" "s" "50%"]; }
|
{ command = ["brightnessctl" "s" "50%"]; }
|
||||||
{ command = ["swaybg" "-c" "1f1d2e"]; }
|
{ command = ["swaybg" "-i" "${./wallpaper.png}"]; }
|
||||||
{ command = ["swayidle" "-w" "before-sleep" "swaylock"]; }
|
{ command = ["swayidle" "-w" "before-sleep" "swaylock"]; }
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
BIN
modules/niri/wallpaper.png
Normal file
BIN
modules/niri/wallpaper.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 MiB |
|
@ -1,53 +0,0 @@
|
||||||
* {
|
|
||||||
border: none;
|
|
||||||
font-family: FiraCodeNerdFont;
|
|
||||||
font-size: 13px;
|
|
||||||
color: #191724;
|
|
||||||
border-radius: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar {
|
|
||||||
background: rgba(0, 0, 0, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*-----module groups----*/
|
|
||||||
.modules-right {
|
|
||||||
background-color: #c4a7e7;
|
|
||||||
margin: 2px 10px 0 0;
|
|
||||||
}
|
|
||||||
.modules-center {
|
|
||||||
background-color: #c4a7e7;
|
|
||||||
margin: 2px 0 0 0;
|
|
||||||
}
|
|
||||||
.modules-left {
|
|
||||||
margin: 2px 0 0 10px;
|
|
||||||
background-color: #c4a7e7;
|
|
||||||
}
|
|
||||||
|
|
||||||
#clock,
|
|
||||||
#battery,
|
|
||||||
#memory,
|
|
||||||
#network,
|
|
||||||
#temperature,
|
|
||||||
#wireplumber {
|
|
||||||
padding: 0 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#cpu {
|
|
||||||
padding: 0 0 0 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*-----Indicators----*/
|
|
||||||
#battery.charging {
|
|
||||||
color: #31748f;
|
|
||||||
}
|
|
||||||
#battery.warning:not(.charging) {
|
|
||||||
color: #eb6f92;
|
|
||||||
}
|
|
||||||
#battery.critical:not(.charging) {
|
|
||||||
color: #eb6f92;
|
|
||||||
}
|
|
||||||
|
|
||||||
#temperature.critical {
|
|
||||||
color: #eb6f92;
|
|
||||||
}
|
|
63
modules/niri/waybar.css.nix
Normal file
63
modules/niri/waybar.css.nix
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
{ config, ... }: let
|
||||||
|
background = config.theme.base;
|
||||||
|
font = config.theme.text;
|
||||||
|
charging = config.theme.pine;
|
||||||
|
warning = config.theme.rose;
|
||||||
|
critical = config.theme.love;
|
||||||
|
in {
|
||||||
|
style = ''
|
||||||
|
* {
|
||||||
|
border: none;
|
||||||
|
font-family: FiraCodeNerdFont;
|
||||||
|
font-size: 18px;
|
||||||
|
color: ${font};
|
||||||
|
border-radius: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
window#waybar {
|
||||||
|
background: rgba(0, 0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*-----module groups----*/
|
||||||
|
.modules-right {
|
||||||
|
background-color: ${background};
|
||||||
|
margin: 2px 10px 0 0;
|
||||||
|
}
|
||||||
|
.modules-center {
|
||||||
|
background-color: ${background};
|
||||||
|
margin: 2px 0 0 0;
|
||||||
|
}
|
||||||
|
.modules-left {
|
||||||
|
margin: 2px 0 0 10px;
|
||||||
|
background-color: ${background};
|
||||||
|
}
|
||||||
|
|
||||||
|
#clock,
|
||||||
|
#battery,
|
||||||
|
#memory,
|
||||||
|
#network,
|
||||||
|
#temperature,
|
||||||
|
#wireplumber {
|
||||||
|
padding: 0 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cpu {
|
||||||
|
padding: 0 0 0 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*-----Indicators----*/
|
||||||
|
#battery.charging {
|
||||||
|
color: ${charging};
|
||||||
|
}
|
||||||
|
#battery.warning:not(.charging) {
|
||||||
|
color: ${warning};
|
||||||
|
}
|
||||||
|
#battery.critical:not(.charging) {
|
||||||
|
color: ${critical};
|
||||||
|
}
|
||||||
|
|
||||||
|
#temperature.critical {
|
||||||
|
color: ${critical};
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue