1
1
Fork 0

Compare commits

...

2 commits

Author SHA1 Message Date
15f1278142
ghostty: fix font hinting
Signed-off-by: Myned <dev@bjork.tech>
2025-01-10 18:06:03 -06:00
aa7d654381
niri: modify border
Signed-off-by: Myned <dev@bjork.tech>
2025-01-10 18:05:41 -06:00
2 changed files with 10 additions and 7 deletions

View file

@ -22,10 +22,10 @@ in {
# https://github.com/sodiboo/niri-flake/blob/main/docs.md#programsnirisettingslayoutborder
border = {
enable = false;
width = config.custom.border;
active.color = "#d33682";
inactive.color = "#00000000";
enable = true;
width = 1;
active.color = "#073642";
inactive.color = "#073642";
};
# https://github.com/sodiboo/niri-flake/blob/main/docs.md#programsnirisettingslayoutcenter-focused-column

View file

@ -22,7 +22,7 @@ in {
enable = true;
# https://ghostty.org/docs/config/reference
settings = rec {
settings = {
adjust-cell-width = -1;
# https://ghostty.org/docs/config/reference#adw-toolbar-style
@ -34,12 +34,15 @@ in {
# https://ghostty.org/docs/config/reference#font-family
#?? ghostty +list-fonts
#?? ghostty +show-face
font-family = with config.custom.settings.fonts; [monospace fallback];
font-family-bold = font-family;
font-family = with config.custom.settings.fonts; ["monospace" fallback];
# https://ghostty.org/docs/config/reference#font-size
font-size = 14;
# https://github.com/ghostty-org/ghostty/discussions/3515
# https://ghostty.org/docs/config/reference#freetype-load-flags
freetype-load-flags = "no-force-autohint";
# https://ghostty.org/docs/config/reference#gtk-titlebar
gtk-titlebar = false;