mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-12 23:57:16 +00:00
Compare commits
5 commits
f1bda719c6
...
1527b7f9b9
Author | SHA1 | Date | |
---|---|---|---|
ItsDrike | 1527b7f9b9 | ||
ItsDrike | d2a1c84d41 | ||
ItsDrike | b5c8e13b6e | ||
ItsDrike | 6740810192 | ||
ItsDrike | 0364f31ff6 |
|
@ -1,4 +1,4 @@
|
||||||
.window_name {
|
.window_name {
|
||||||
font-family: "JetBrains Mono", "Font Awesome 6 Free", sans-serif;
|
font-family: "Monaspace Krypton";
|
||||||
font-size: 1.4rem;
|
font-size: 1.4rem;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,13 +2,14 @@
|
||||||
background-color: $bg1-a;
|
background-color: $bg1-a;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
|
|
||||||
.icon, .icon label {
|
.icon,
|
||||||
font-family: "Material Symbols Outlined";
|
.icon label {
|
||||||
font-size: 1.15rem;
|
font-family: "JetBrainsMono Nerd Font", "Material Symbols Outlined";
|
||||||
|
font-size: 1.2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.value {
|
.value {
|
||||||
margin: 0 9px;
|
margin: 0 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.focused {
|
.focused {
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
background-color: $bg-a;
|
background-color: $bg-a;
|
||||||
color: $fg;
|
color: $fg;
|
||||||
|
|
||||||
font-family: "JetBrains Mono", "Jost *", sans-serif;
|
font-family: "JetBrainsMono Nerd Font";
|
||||||
|
|
||||||
label {
|
label {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
|
|
@ -25,6 +25,7 @@ in {
|
||||||
gawk
|
gawk
|
||||||
netcat-openbsd
|
netcat-openbsd
|
||||||
jq
|
jq
|
||||||
|
bc
|
||||||
util-linux
|
util-linux
|
||||||
systemd
|
systemd
|
||||||
bluez
|
bluez
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
"SUPER, W, killactive,"
|
"SUPER, W, killactive,"
|
||||||
"SUPER, F, togglefloating,"
|
"SUPER, F, togglefloating,"
|
||||||
"SUPER, Space, fullscreen, 0"
|
"SUPER, Space, fullscreen, 0"
|
||||||
"SUPER, Space_SHIFT, fullscreen, 1" # maximize
|
"SUPER_SHIFT, Space, fullscreen, 1" # maximize
|
||||||
"SUPER_SHIFT, S, layoutmsg, togglesplit"
|
"SUPER_SHIFT, S, layoutmsg, togglesplit"
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
|
@ -62,6 +62,7 @@
|
||||||
".mozilla"
|
".mozilla"
|
||||||
".mullvad"
|
".mullvad"
|
||||||
".config/chromium"
|
".config/chromium"
|
||||||
|
".config/spotify"
|
||||||
".config/vesktop"
|
".config/vesktop"
|
||||||
".local/share/gnupg"
|
".local/share/gnupg"
|
||||||
".local/share/zoxide"
|
".local/share/zoxide"
|
||||||
|
|
|
@ -101,5 +101,10 @@ in {
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# Tool for searching and previewing installed fonts
|
||||||
|
font-manager
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue