1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 05:47:29 +02:00

i3/sway: support str type for font size

This commit is contained in:
DCsunset 2024-08-19 23:58:10 +00:00 committed by Robert Helgesson
parent 7d569851e9
commit 127ccc3eb7
No known key found for this signature in database
GPG key ID: 96E745BD17AA17ED
4 changed files with 43 additions and 8 deletions

View file

@ -31,7 +31,7 @@ let
};
size = mkOption {
type = types.float;
type = types.either types.float types.str;
default = 8.0;
description = ''
The font size to use for window titles.

View file

@ -7,7 +7,10 @@
enable = true;
config = {
bars = [{ fonts = [ "FontAwesome" "Iosevka 11.500000" ]; }];
bars = [
{ fonts = [ "FontAwesome" "Iosevka 11.500000" ]; }
{ fonts = [ "FontAwesome" "Iosevka Bold Semi-Condensed 14px" ]; }
];
fonts = [ "DejaVuSansMono" "Terminus Bold Semi-Condensed 13.500000" ];
};
};
@ -21,5 +24,6 @@
test.asserts.warnings.expected = [
"Specifying i3.config.fonts as a list is deprecated. Use the attrset version instead."
"Specifying i3.config.bars[].fonts as a list is deprecated. Use the attrset version instead."
"Specifying i3.config.bars[].fonts as a list is deprecated. Use the attrset version instead."
];
}

View file

@ -94,3 +94,25 @@ bar {
}
}
bar {
font pango:FontAwesome, Iosevka Bold Semi-Condensed 14px
mode dock
hidden_state hide
position bottom
status_command @i3status@/bin/i3status
i3bar_command @i3@/bin/i3bar
workspace_buttons yes
strip_workspace_numbers no
tray_output primary
colors {
background #000000
statusline #ffffff
separator #666666
focused_workspace #4c7899 #285577 #ffffff
active_workspace #333333 #5f676a #ffffff
inactive_workspace #333333 #222222 #888888
urgent_workspace #2f343a #900000 #ffffff
binding_mode #2f343a #900000 #ffffff
}
}

View file

@ -7,12 +7,21 @@
enable = true;
config = {
bars = [{
bars = [
{
fonts = {
names = [ "FontAwesome" "Iosevka" ];
size = 11.5;
};
}];
}
{
fonts = {
names = [ "FontAwesome" "Iosevka" ];
style = "Bold Semi-Condensed";
size = "14px";
};
}
];
fonts = {
names = [ "DejaVuSansMono" "Terminus" ];
style = "Bold Semi-Condensed";