From c34e9dccb94e81d4c5aa89ca959f4bca4a9e0bb6 Mon Sep 17 00:00:00 2001 From: Fabio Scotto di Santolo Date: Sat, 23 May 2026 22:24:07 +0200 Subject: [PATCH] desktop: swap fonts to NotoSans NF and UbuntuSansMono Nerd Font --- dotfiles/desktop/.config/dunst/dunstrc | 2 +- dotfiles/desktop/.config/rofi/config.rasi | 2 +- dotfiles/desktop/.config/sway/config | 2 +- dotfiles/desktop/.config/waybar/style.css | 2 +- dotfiles/desktop/.emacs.d/lisp/core/ui.el | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dotfiles/desktop/.config/dunst/dunstrc b/dotfiles/desktop/.config/dunst/dunstrc index ad1dc02..095a690 100644 --- a/dotfiles/desktop/.config/dunst/dunstrc +++ b/dotfiles/desktop/.config/dunst/dunstrc @@ -8,7 +8,7 @@ height = (0, 120) origin = top-right offset = (20, 40) -font = LiterationMono Nerd Font 10 +font = NotoSans NF 10 line_height = 2 padding = 12 diff --git a/dotfiles/desktop/.config/rofi/config.rasi b/dotfiles/desktop/.config/rofi/config.rasi index b5fdbe9..9fe6ed8 100644 --- a/dotfiles/desktop/.config/rofi/config.rasi +++ b/dotfiles/desktop/.config/rofi/config.rasi @@ -2,7 +2,7 @@ configuration { modi: "drun,run,window"; show-icons: true; icon-theme: "Yaru"; - font: "LiterationMono Nerd Font 11"; + font: "NotoSans NF 11"; } * { diff --git a/dotfiles/desktop/.config/sway/config b/dotfiles/desktop/.config/sway/config index d65d5a0..05d1c14 100644 --- a/dotfiles/desktop/.config/sway/config +++ b/dotfiles/desktop/.config/sway/config @@ -2,7 +2,7 @@ set $mod Mod4 -font pango:LiterationMono Nerd Font 10 +font pango:NotoSans NF 10 # vim-like directions set $left h diff --git a/dotfiles/desktop/.config/waybar/style.css b/dotfiles/desktop/.config/waybar/style.css index 63198cd..357a625 100644 --- a/dotfiles/desktop/.config/waybar/style.css +++ b/dotfiles/desktop/.config/waybar/style.css @@ -1,5 +1,5 @@ * { - font-family: "LiterationMono Nerd Font", "Symbols Nerd Font Mono", monospace; + font-family: "NotoSans NF"; font-size: 10pt; min-height: 0; } diff --git a/dotfiles/desktop/.emacs.d/lisp/core/ui.el b/dotfiles/desktop/.emacs.d/lisp/core/ui.el index 56c23f7..cb65d7e 100644 --- a/dotfiles/desktop/.emacs.d/lisp/core/ui.el +++ b/dotfiles/desktop/.emacs.d/lisp/core/ui.el @@ -7,10 +7,10 @@ (load-theme 'nordic-night t)) ;; Setting default font -(set-frame-font "LiterationMono Nerd Font 14" nil t) +(set-frame-font "UbuntuSansMono Nerd Font 14" nil t) (add-to-list 'default-frame-alist - '(font . "FantasqueSansM Nerd Font-14")) + '(font . "UbuntuSansMono Nerd Font-14")) ;; Remove toolbar (tool-bar-mode -1)