mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 03:29:45 +01:00
i3/sway: support str type for font size
This commit is contained in:
parent
7d569851e9
commit
127ccc3eb7
4 changed files with 43 additions and 8 deletions
|
@ -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.
|
||||
|
|
|
@ -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."
|
||||
];
|
||||
}
|
||||
|
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue