Fix twmn
This commit is contained in:
parent
42a94bd519
commit
bed2b38661
1 changed files with 16 additions and 0 deletions
|
|
@ -1,5 +1,21 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
let
|
||||||
|
palette = pkgs.lib.rice.palette.toRGBHex pkgs.rice.colorPalette;
|
||||||
|
font = pkgs.rice.font.normal;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
services.twmn = {
|
services.twmn = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
text = {
|
||||||
|
color = palette.primary.foreground;
|
||||||
|
font = { inherit (font) package size; family = font.name; };
|
||||||
|
};
|
||||||
|
window = {
|
||||||
|
animation.bounce.enable = false;
|
||||||
|
color = palette.primary.background;
|
||||||
|
height = 32;
|
||||||
|
opacity = pkgs.lib.rice.float.round (pkgs.rice.opacity * 100);
|
||||||
|
offset = { x = -20; y = 50; };
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue