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 # https://github.com/sodiboo/niri-flake/blob/main/docs.md#programsnirisettingslayoutborder
border = { border = {
enable = false; enable = true;
width = config.custom.border; width = 1;
active.color = "#d33682"; active.color = "#073642";
inactive.color = "#00000000"; inactive.color = "#073642";
}; };
# https://github.com/sodiboo/niri-flake/blob/main/docs.md#programsnirisettingslayoutcenter-focused-column # https://github.com/sodiboo/niri-flake/blob/main/docs.md#programsnirisettingslayoutcenter-focused-column

View file

@ -22,7 +22,7 @@ in {
enable = true; enable = true;
# https://ghostty.org/docs/config/reference # https://ghostty.org/docs/config/reference
settings = rec { settings = {
adjust-cell-width = -1; adjust-cell-width = -1;
# https://ghostty.org/docs/config/reference#adw-toolbar-style # https://ghostty.org/docs/config/reference#adw-toolbar-style
@ -34,12 +34,15 @@ in {
# https://ghostty.org/docs/config/reference#font-family # https://ghostty.org/docs/config/reference#font-family
#?? ghostty +list-fonts #?? ghostty +list-fonts
#?? ghostty +show-face #?? ghostty +show-face
font-family = with config.custom.settings.fonts; [monospace fallback]; font-family = with config.custom.settings.fonts; ["monospace" fallback];
font-family-bold = font-family;
# https://ghostty.org/docs/config/reference#font-size # https://ghostty.org/docs/config/reference#font-size
font-size = 14; 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 # https://ghostty.org/docs/config/reference#gtk-titlebar
gtk-titlebar = false; gtk-titlebar = false;