Fix alacritty’s too small font on external monitor
Alacritty scales relative to the physical monitor size (which is a cool feature for HiDPI monitors). Since my external monitor is LoDPI, this makes the text unreadable. `xrdb -remove` is useful for when I have to add a HiDPI monitor temporarily
This commit is contained in:
parent
f3b571e93e
commit
cfe1b77aaa
|
@ -23,3 +23,6 @@ URxvt*pointerBlank: True
|
|||
|
||||
! No scrollbar
|
||||
URxvt*scrollBar: False
|
||||
|
||||
! Force same dpi (for alacritty)
|
||||
Xft.dpi: 96
|
||||
|
|
|
@ -4,7 +4,7 @@ font:
|
|||
family: Iosevka Nerd Font
|
||||
style: Regular
|
||||
|
||||
size: 8
|
||||
size: 13.5
|
||||
|
||||
mouse:
|
||||
hide_when_typing: true
|
||||
|
|
Reference in a new issue