Compare commits

...

5 commits

Author SHA1 Message Date
ItsDrike 1527b7f9b9
Add bc (calc) to eww dependencies
This fixes icon picking logic, namely for the battery icon
2024-06-20 23:07:29 +02:00
ItsDrike d2a1c84d41
Install font-manager 2024-06-20 23:02:52 +02:00
ItsDrike b5c8e13b6e
Persist spotify data 2024-06-20 22:59:57 +02:00
ItsDrike 6740810192
Fix eww fonts 2024-06-20 22:59:47 +02:00
ItsDrike 0364f31ff6
Fix typo 2024-06-20 22:29:45 +02:00
7 changed files with 15 additions and 7 deletions

View file

@ -1,4 +1,4 @@
.window_name {
font-family: "JetBrains Mono", "Font Awesome 6 Free", sans-serif;
font-family: "Monaspace Krypton";
font-size: 1.4rem;
}

View file

@ -2,13 +2,14 @@
background-color: $bg1-a;
border-radius: 25px;
.icon, .icon label {
font-family: "Material Symbols Outlined";
font-size: 1.15rem;
.icon,
.icon label {
font-family: "JetBrainsMono Nerd Font", "Material Symbols Outlined";
font-size: 1.2rem;
}
.value {
margin: 0 9px;
margin: 0 10px;
}
.focused {

View file

@ -34,7 +34,7 @@
background-color: $bg-a;
color: $fg;
font-family: "JetBrains Mono", "Jost *", sans-serif;
font-family: "JetBrainsMono Nerd Font";
label {
font-size: 14px;

View file

@ -25,6 +25,7 @@ in {
gawk
netcat-openbsd
jq
bc
util-linux
systemd
bluez

View file

@ -16,7 +16,7 @@
"SUPER, W, killactive,"
"SUPER, F, togglefloating,"
"SUPER, Space, fullscreen, 0"
"SUPER, Space_SHIFT, fullscreen, 1" # maximize
"SUPER_SHIFT, Space, fullscreen, 1" # maximize
"SUPER_SHIFT, S, layoutmsg, togglesplit"
#

View file

@ -62,6 +62,7 @@
".mozilla"
".mullvad"
".config/chromium"
".config/spotify"
".config/vesktop"
".local/share/gnupg"
".local/share/zoxide"

View file

@ -101,5 +101,10 @@ in {
})
];
};
environment.systemPackages = with pkgs; [
# Tool for searching and previewing installed fonts
font-manager
];
};
}