Compare commits

..

No commits in common. "448da283ee2961b05c842e180efa3f1afe93f6f8" and "c4739ab3fbca300fc6222c9963e73cfdd0d9c13c" have entirely different histories.

4 changed files with 25 additions and 37 deletions

View file

@ -1,6 +1,6 @@
font: font:
normal: normal:
family: CaskaydiaCove Nerd Font family: Cascadia Code
size: 12 size: 12
background_opacity: 0.9 background_opacity: 0.9

View file

@ -53,7 +53,7 @@ for_window [title="pyCalc"] floating enable
for_window [title="insect"] floating enable for_window [title="insect"] floating enable
# font # font
#font pango:CaskaydiaCove Nerd Font Mono 10 font Cascadia Code 10
# colors # colors
set $black #2d2a2e set $black #2d2a2e

View file

@ -18,31 +18,28 @@ separator = "|"
[icons] [icons]
name = "none" name = "none"
[icons.overrides] [icons.overrides]
backlight_empty = "" bat = "  "
backlight_full = "" bat_full = "  "
backlight_partial1 = "" bat_charging = "   "
backlight_partial2 = "" bat_discharging = "  "
backlight_partial3 = "" backlight_empty = "  "
bat = "" backlight_partial1 = "  "
bat_charging = " " backlight_partial2 = "  "
bat_discharging = "" backlight_partial3 = "  "
bat_empty = "" backlight_full = "  "
bat_full = "" volume_full = "  "
cogs = "" volume_half = "  "
disk_space = "" volume_empty = "  "
volume_muted= "MUTE"
cogs = "  "
memory_mem = "  "
headphones = "  " headphones = "  "
memory_mem = "" net_wireless = " "
net_down = "DOWN"
net_up = "UP"
net_vpn = " " net_vpn = " "
net_wired = "" net_wired = ""
net_wireless = " " net_up = "UP"
net_down = "DOWN"
thermometer = "  " thermometer = "  "
time = ""
volume_empty = ""
volume_full = ""
volume_half = ""
volume_muted= " MUTE"
[[block]] [[block]]
@ -75,7 +72,6 @@ alert = 10.0
block = "memory" block = "memory"
display_type = "memory" display_type = "memory"
format_mem = "{mem_total_used_percents}" format_mem = "{mem_total_used_percents}"
icons_format = " {icon}"
clickable = false clickable = false
[[block]] [[block]]
@ -94,15 +90,7 @@ block = "backlight"
block = "battery" block = "battery"
device = "BAT0" device = "BAT0"
interval = 10 interval = 10
format = "{percentage} ({time})" format = "{percentage}% {time}"
icons_format = " {icon} "
[[block]]
block = "battery"
device = "BAT1"
interval = 10
format = "{percentage} ({time})"
icons_format = " {icon} "
[[block]] [[block]]
block = "time" block = "time"

View file

@ -72,14 +72,14 @@ in {
fonts.enableDefaultFonts = true; fonts.enableDefaultFonts = true;
fonts.fontconfig.antialias = true; fonts.fontconfig.antialias = true;
fonts.fonts = with pkgs; [ fonts.fonts = with pkgs; [
corefonts cascadia-code
emacs-all-the-icons-fonts emacs-all-the-icons-fonts
fira-code fira-code
fira-code-symbols
font-awesome
meslo-lg
noto-fonts noto-fonts
noto-fonts-emoji noto-fonts-emoji
(nerdfonts.override {
fonts = [ "CascadiaCode" "Meslo" ];
})
]; ];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;