Compare commits
2 commits
c4739ab3fb
...
448da283ee
Author | SHA1 | Date | |
---|---|---|---|
448da283ee | |||
b907855018 |
4 changed files with 37 additions and 25 deletions
|
@ -1,6 +1,6 @@
|
||||||
font:
|
font:
|
||||||
normal:
|
normal:
|
||||||
family: Cascadia Code
|
family: CaskaydiaCove Nerd Font
|
||||||
size: 12
|
size: 12
|
||||||
|
|
||||||
background_opacity: 0.9
|
background_opacity: 0.9
|
||||||
|
|
|
@ -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 Cascadia Code 10
|
#font pango:CaskaydiaCove Nerd Font Mono 10
|
||||||
|
|
||||||
# colors
|
# colors
|
||||||
set $black #2d2a2e
|
set $black #2d2a2e
|
||||||
|
|
|
@ -18,28 +18,31 @@ separator = "|"
|
||||||
[icons]
|
[icons]
|
||||||
name = "none"
|
name = "none"
|
||||||
[icons.overrides]
|
[icons.overrides]
|
||||||
bat = " "
|
backlight_empty = ""
|
||||||
bat_full = " "
|
backlight_full = ""
|
||||||
bat_charging = " "
|
backlight_partial1 = ""
|
||||||
bat_discharging = " "
|
backlight_partial2 = ""
|
||||||
backlight_empty = " "
|
backlight_partial3 = ""
|
||||||
backlight_partial1 = " "
|
bat = ""
|
||||||
backlight_partial2 = " "
|
bat_charging = " "
|
||||||
backlight_partial3 = " "
|
bat_discharging = ""
|
||||||
backlight_full = " "
|
bat_empty = ""
|
||||||
volume_full = " "
|
bat_full = ""
|
||||||
volume_half = " "
|
cogs = ""
|
||||||
volume_empty = " "
|
disk_space = ""
|
||||||
volume_muted= "MUTE"
|
|
||||||
cogs = " "
|
|
||||||
memory_mem = " "
|
|
||||||
headphones = " "
|
headphones = " "
|
||||||
net_wireless = " "
|
memory_mem = ""
|
||||||
|
net_down = "DOWN"
|
||||||
|
net_up = "UP"
|
||||||
net_vpn = " "
|
net_vpn = " "
|
||||||
net_wired = ""
|
net_wired = ""
|
||||||
net_up = "UP"
|
net_wireless = " "
|
||||||
net_down = "DOWN"
|
|
||||||
thermometer = " "
|
thermometer = " "
|
||||||
|
time = ""
|
||||||
|
volume_empty = ""
|
||||||
|
volume_full = ""
|
||||||
|
volume_half = ""
|
||||||
|
volume_muted= " MUTE"
|
||||||
|
|
||||||
|
|
||||||
[[block]]
|
[[block]]
|
||||||
|
@ -72,6 +75,7 @@ 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]]
|
||||||
|
@ -90,7 +94,15 @@ 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"
|
||||||
|
|
|
@ -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; [
|
||||||
cascadia-code
|
corefonts
|
||||||
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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue