add bitmap font support

This commit is contained in:
insects 2024-08-13 14:55:23 +02:00
parent d7027897fa
commit e5f8a2d975
3 changed files with 16 additions and 21 deletions

View file

@ -9,5 +9,9 @@
family = "Fira Sans";
package = pkgs.fira;
};
bitmap = {
family = "Tamzen";
package = pkgs.tamzen;
};
};
}

View file

@ -3,20 +3,19 @@
}: {
systemd.user.services.waybar = {
Unit.StartLimitBurst = 30;
# this fixes fonts for some reason
Service.Environment = "PATH=${config.home.profileDirectory}/bin";
};
programs.waybar = {
enable = true;
systemd.enable = true;
settings = {
primary = {
# exclusive = false;
# passthrough = false;
height = 40;
position = "top";
margin-top = 6;
margin-left = 6;
margin-right = 6;
margin-top = 10;
margin-left = 20;
margin-right = 20;
modules-left = [
"hyprland/workspaces"
"hyprland/submap"
@ -41,10 +40,9 @@
inherit (config.lib.stylix.colors) withHashtag;
in ''
* {
font-family: ${config.fontProfiles.regular.family}, ${config.fontProfiles.monospace.family};
font-family: ${config.fontProfiles.bitmap.family}, ${config.fontProfiles.monospace.family};
font-size: 12pt;
padding: 0;
margin: 0 0.4em;
}
window#waybar {
@ -52,23 +50,14 @@
border-radius: 0.5em;
}
.modules-left {
margin-left: -0.65em;
}
.modules-right {
margin-right: -0.65em;
}
#workspaces button {
padding-left: 0.4em;
padding-right: 0.4em;
margin-top: 0.15em;
margin-bottom: 0.15em;
#workspaces {
transition: background-color .5s, color .5s;
}
#workspaces button.active,
#workspaces button.focused {
background-color: ${withHashtag.base08};
background-color: ${withHashtag.base05};
color: ${withHashtag.base00};
}
'';
};

View file

@ -23,6 +23,7 @@ in {
enable = lib.mkEnableOption "Whether to enable font profiles";
monospace = mkFontOption "monospace";
regular = mkFontOption "regular";
bitmap = mkFontOption "bitmap";
};
config = lib.mkIf cfg.enable {
@ -30,6 +31,7 @@ in {
home.packages = [
cfg.monospace.package
cfg.regular.package
cfg.bitmap.package
];
};
}