From 6d83c83a0b4228cdd2d785f23cf7faabc7a36f30 Mon Sep 17 00:00:00 2001 From: Mitchell Riedstra Date: Fri, 26 Dec 2025 16:59:00 -0500 Subject: Alacritty set to gruvbox, font tweaks and minor tweak for fedora --- alacritty/alacritty.toml | 94 +++++++++++++++++++++--------------------------- foot/foot.ini | 24 ++++--------- river/init | 3 ++ 3 files changed, 50 insertions(+), 71 deletions(-) diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml index dc207f9..26b52c2 100644 --- a/alacritty/alacritty.toml +++ b/alacritty/alacritty.toml @@ -1,61 +1,38 @@ -[colors.bright] -black = "#4c566a" -blue = "#81a1c1" -cyan = "#8fbcbb" -green = "#a3be8c" -magenta = "#b48ead" -red = "#bf616a" -white = "#eceff4" -yellow = "#ebcb8b" - -[colors.cursor] -cursor = "#d8dee9" -text = "#2e3440" - -[colors.dim] -black = "#373e4d" -blue = "#68809a" -cyan = "#6d96a5" -green = "#809575" -magenta = "#8c738c" -red = "#94545d" -white = "#aeb3bb" -yellow = "#b29e75" - -[colors.normal] -black = "#3b4252" -blue = "#81a1c1" -cyan = "#88c0d0" -green = "#a3be8c" -magenta = "#b48ead" -red = "#bf616a" -white = "#e5e9f0" -yellow = "#ebcb8b" +# Colors (Gruvbox dark) +# Default colors [colors.primary] -background = "#2e3440" -dim_foreground = "#a5abb6" -foreground = "#d8dee9" - -# [colors.search.footer_bar] -# background = "#434c5e" -# foreground = "#d8dee9" +# hard contrast background = = '#1d2021' +background = '#282828' +# soft contrast background = = '#32302f' +foreground = '#ebdbb2' -[colors.search.matches] -background = "#88c0d0" -foreground = "CellBackground" - -[colors.selection] -background = "#4c566a" -text = "CellForeground" +# Normal colors +[colors.normal] +black = '#282828' +red = '#cc241d' +green = '#98971a' +yellow = '#d79921' +blue = '#458588' +magenta = '#b16286' +cyan = '#689d6a' +white = '#a89984' + +# Bright colors +[colors.bright] +black = '#928374' +red = '#fb4934' +green = '#b8bb26' +yellow = '#fabd2f' +blue = '#83a598' +magenta = '#d3869b' +cyan = '#8ec07c' +white = '#ebdbb2' -[colors.vi_mode_cursor] -cursor = "#d8dee9" -text = "#2e3440" [font] -size = 9 -# size = 11 +# size = 9 +size = 11 # ; family: Curie # ; style: Italic @@ -65,8 +42,17 @@ size = 9 # family = "Iosevka Fixed" # family = "Iosevka Term" # family = "Iosevka Term Heavy" -family = "Iosevka Term" -# family = "IBM 3270" +# family = "Iosevka Term" +family = "IBM 3270" +# family = "Fixedsys Excelsior" +# family = "Monofonto" +# family = "scientifica" +# family = "Nimbus Mono" +# family = "Cozette" +# family = "mnicmp Square" +# family = "ProggyVector" +# family = "IBM Plex Mono" +# family = "TX-02-Data" [window] diff --git a/foot/foot.ini b/foot/foot.ini index e37bc7b..8ba258b 100644 --- a/foot/foot.ini +++ b/foot/foot.ini @@ -2,30 +2,20 @@ term=xterm-256color # "Normal" fonts: -# Pretty basic, but good font. -# font=Iosevka Term:style=Regular:size=10.5 +# font=IBM Plex Mono:style=Regular:size=9 # Very cool font, but only looks good at larger sizes IMO font=IBM 3270:Regular:size=10.5 -# Bitmap fonts: - -# Extremely large bitmap font, kind of fuzzy -# font=CozetteHiDpi:style=Medium:size=14 +# font=IBM 3270 Condensed:Regular:size=12 -# Terminus, the old classic. -# font=Terminus (TTF):style=Regular:size=10.5 -# font=Terminus (TTF):style=Regular:size=9 - -# font=ProFontOTB:style=Regular:size=10.5 -# font=ProFontOTB:style=Regular:size=9 +# Bitmap fonts: -# The sizing is odd, perhaps that on me? -# Still, a decent font with a number of size options from tiny to large. -# font=Tamzen:style=Regular:size=10.5 +# font=mnicmp:Regular:size=11 +# font=mnicmpDiamond:Regular:size=12 +# font=mnicmp Square:Regular:size=10 -# fairly large font, also has a smaller variant -# font=Gohu GohuFont:style=Regular:size=12 +# font=Cozette:Regular:size=10 # Very small font # font=scientifica:style=Medium:size=8 diff --git a/river/init b/river/init index a883d8d..91add4f 100755 --- a/river/init +++ b/river/init @@ -222,6 +222,9 @@ systemctl --user restart xdg-desktop-portal # I hate calling this directly but the systemd unit is bugged on arch at # least, running it by hand appears to work just fine _gtk_portal=/usr/lib/xdg-desktop-portal-gtk +if [ -x /usr/libexec/xdg-desktop-portal-gtk ] ; then + _gtk_portal=/usr/libexec/xdg-desktop-portal-gtk +fi if [ -x "$_gtk_portal" ] ; then "$_gtk_portal" & fi -- cgit v1.2.3