Disabled dpi-aware
in foot
This commit is contained in:
parent
e588857c18
commit
6792d0975d
1 changed files with 12 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
{lib, ...}: {
|
||||
programs.foot = {
|
||||
enable = true;
|
||||
server.enable = true;
|
||||
|
@ -6,7 +6,17 @@
|
|||
main = {
|
||||
term = "xterm-256color";
|
||||
login-shell = "yes";
|
||||
font = "Fira Code,Symbols Nerd Font,JoyPixels";
|
||||
# Using dpi-aware = "yes" font size is too small on my external monitor
|
||||
# Scaling that output in sway is inefficient and make XWayland apps blurred
|
||||
dpi-aware = "no";
|
||||
font = let
|
||||
size = "12";
|
||||
in
|
||||
lib.concatStringsSep ", " [
|
||||
"Fira Code:size=${size}"
|
||||
"Symbols Nerd Font:size=${size}"
|
||||
"JoyPixels:size=${size}"
|
||||
];
|
||||
};
|
||||
|
||||
mouse = {
|
||||
|
|
Loading…
Add table
Reference in a new issue