mirror of
https://github.com/danth/stylix
synced 2025-02-16 21:38:40 +00:00
Adjust KDE fonts 🐛
The smallest readable font was actually too small to read. I've increased it to the normal font size to be consistent with what the user has configured. The font for window titles was also missing.
This commit is contained in:
parent
f5c5e02d70
commit
57dabc434b
1 changed files with 13 additions and 13 deletions
|
@ -43,6 +43,10 @@ let
|
||||||
DisabledValue = 1;
|
DisabledValue = 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
desktopFont = "${sansSerif.name},${toString sizes.desktop},-1,5,50,0,0,0,0,0";
|
||||||
|
applicationFont = "${sansSerif.name},${toString sizes.applications},-1,5,50,0,0,0,0,0";
|
||||||
|
monospaceFont = "${monospace.name},${toString sizes.terminal},-1,5,50,0,0,0,0,0";
|
||||||
|
|
||||||
kdeglobals = {
|
kdeglobals = {
|
||||||
# The existence of this group makes the following settings unable to
|
# The existence of this group makes the following settings unable to
|
||||||
# be changed by the user, as specified at
|
# be changed by the user, as specified at
|
||||||
|
@ -54,19 +58,13 @@ let
|
||||||
ColorScheme = "Breeze";
|
ColorScheme = "Breeze";
|
||||||
widgetStyle = "Oxygen";
|
widgetStyle = "Oxygen";
|
||||||
|
|
||||||
shadeSortColumn = true;
|
inherit desktopFont;
|
||||||
|
fixed = monospaceFont;
|
||||||
XftAntialias = true;
|
font = applicationFont;
|
||||||
XftHintStyle = "hintmedium";
|
menuFont = desktopFont;
|
||||||
XftSubPixel = "none";
|
taskbarFont = desktopFont;
|
||||||
|
toolBarFont = desktopFont;
|
||||||
desktopFont = "${sansSerif.name},${toString sizes.desktop},-1,5,50,0,0,0,0,0";
|
smallestReadableFont = desktopFont;
|
||||||
menuFont = "${sansSerif.name},${toString sizes.desktop},-1,5,50,0,0,0,0,0";
|
|
||||||
taskbarFont = "${sansSerif.name},${toString sizes.desktop},-1,5,50,0,0,0,0,0";
|
|
||||||
toolBarFont = "${sansSerif.name},${toString sizes.desktop},-1,5,50,0,0,0,0,0";
|
|
||||||
font = "${sansSerif.name},${toString sizes.applications},-1,5,50,0,0,0,0,0";
|
|
||||||
smallestReadableFont = "${sansSerif.name},${toString (sizes.applications / 2)},-1,5,50,0,0,0,0,0";
|
|
||||||
fixed = "${monospace.name},${toString sizes.terminal},-1,5,50,0,0,0,0,0";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
"ColorEffects:Disabled".Enable = false;
|
"ColorEffects:Disabled".Enable = false;
|
||||||
|
@ -86,6 +84,8 @@ let
|
||||||
inactiveBlend = "${base03-rgb-r},${base03-rgb-g},${base03-rgb-b}";
|
inactiveBlend = "${base03-rgb-r},${base03-rgb-g},${base03-rgb-b}";
|
||||||
inactiveBackground = "${base00-rgb-r},${base00-rgb-g},${base00-rgb-b}";
|
inactiveBackground = "${base00-rgb-r},${base00-rgb-g},${base00-rgb-b}";
|
||||||
inactiveForeground = "${base05-rgb-r},${base05-rgb-g},${base05-rgb-b}";
|
inactiveForeground = "${base05-rgb-r},${base05-rgb-g},${base05-rgb-b}";
|
||||||
|
|
||||||
|
activeFont = desktopFont;
|
||||||
};
|
};
|
||||||
|
|
||||||
DesktopIcons = icons;
|
DesktopIcons = icons;
|
||||||
|
|
Loading…
Add table
Reference in a new issue