config: change default fonts
Use caskaydia cove and rubik
This commit is contained in:
parent
13e0064abe
commit
11fede05a7
4 changed files with 7 additions and 7 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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";
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue