config: change default fonts

Use caskaydia cove and rubik
This commit is contained in:
2 * r + 2 * t 2025-08-12 17:36:48 +10:00
parent 13e0064abe
commit 11fede05a7
4 changed files with 7 additions and 7 deletions

View file

@ -51,7 +51,7 @@ Dependencies:
- `qt6-declarative` - `qt6-declarative`
- `gcc-libs` - `gcc-libs`
- [`material-symbols`](https://fonts.google.com/icons) - [`material-symbols`](https://fonts.google.com/icons)
- [`jetbrains-mono-nerd`](https://www.nerdfonts.com/font-downloads) - [`caskaydia-cove-nerd`](https://www.nerdfonts.com/font-downloads)
- [`grim`](https://gitlab.freedesktop.org/emersion/grim) - [`grim`](https://gitlab.freedesktop.org/emersion/grim)
- [`swappy`](https://github.com/jtheoof/swappy) - [`swappy`](https://github.com/jtheoof/swappy)
- [`libqalculate`](https://github.com/Qalculate/libqalculate) - [`libqalculate`](https://github.com/Qalculate/libqalculate)
@ -165,8 +165,8 @@ All configuration options are in `~/.config/caelestia/shell.json`.
"font": { "font": {
"family": { "family": {
"material": "Material Symbols Rounded", "material": "Material Symbols Rounded",
"mono": "JetBrains Mono NF", "mono": "CaskaydiaCove NF",
"sans": "IBM Plex Sans" "sans": "Rubik"
}, },
"size": { "size": {
"scale": 1 "scale": 1

View file

@ -35,8 +35,8 @@ JsonObject {
} }
component FontFamily: JsonObject { component FontFamily: JsonObject {
property string sans: "IBM Plex Sans" property string sans: "Rubik"
property string mono: "JetBrains Mono NF" property string mono: "CaskaydiaCove NF"
property string material: "Material Symbols Rounded" property string material: "Material Symbols Rounded"
} }

View file

@ -55,7 +55,7 @@
++ lib.optional withCli caelestia-cli; ++ lib.optional withCli caelestia-cli;
fontconfig = makeFontsConf { fontconfig = makeFontsConf {
fontDirectories = [material-symbols nerd-fonts.jetbrains-mono]; fontDirectories = [material-symbols nerd-fonts.caskaydia-cove];
}; };
in in
stdenv.mkDerivation { stdenv.mkDerivation {

View file

@ -47,7 +47,7 @@
in in
pkgs.mkShellNoCC { pkgs.mkShellNoCC {
inputsFrom = [shell]; inputsFrom = [shell];
packages = with pkgs; [material-symbols nerd-fonts.jetbrains-mono]; packages = with pkgs; [material-symbols nerd-fonts.caskaydia-cove];
CAELESTIA_BD_PATH = "${shell}/bin/beat_detector"; CAELESTIA_BD_PATH = "${shell}/bin/beat_detector";
}; };
}); });