diff options
| author | Danilo M. <danix@danix.xyz> | 2026-09-14 18:19:36 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-09-14 18:19:36 +0200 |
| commit | 299cd762de30b5ae162cf599e929b61752645077 (patch) | |
| tree | 2cee2ace27e81fa354370598c8e50aded73e9000 /desktop/modules/sound/SoundPage.qml | |
| parent | 562273597fa3831363d9ac4a30b7263b7bc69b3e (diff) | |
| download | quickshell-299cd762de30b5ae162cf599e929b61752645077.tar.gz quickshell-299cd762de30b5ae162cf599e929b61752645077.zip | |
feat(desktop): pin glyphs to Inconsolata Nerd Font
Glyphs are Nerd Font private-use codepoints, and relying on per-codepoint fontconfig fallback from Noto Sans let the same codepoint resolve to a different glyph in a different Nerd Font.
A Theme.iconFamily now names the render family once, and every glyph Text uses it, while fontFamily stays Noto Sans for words and labels. The ethernet glyph moves from \uf6ff to \uef44, the fa-ethernet codepoint present in Inconsolata.
Diffstat (limited to 'desktop/modules/sound/SoundPage.qml')
| -rw-r--r-- | desktop/modules/sound/SoundPage.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/modules/sound/SoundPage.qml b/desktop/modules/sound/SoundPage.qml index 7a757c9..31f9e7c 100644 --- a/desktop/modules/sound/SoundPage.qml +++ b/desktop/modules/sound/SoundPage.qml @@ -79,7 +79,7 @@ Column { Text { anchors.verticalCenter: parent.verticalCenter text: page.stateIcon(audio, modelData.label === "Input") - font { family: Theme.fontFamily; pixelSize: Theme.fontSize } + font { family: Theme.iconFamily; pixelSize: Theme.fontSize } color: audio?.muted ? Theme.red : Theme.accent } @@ -120,7 +120,7 @@ Column { Text { id: chevron text: section.expanded ? "\uf077" : "\uf078" - font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 4 } + font { family: Theme.iconFamily; pixelSize: Theme.fontSize - 4 } color: Theme.overlay } } |
