1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-07 05:55:37 -05:00

Only material icons rounded

This commit is contained in:
bbedward
2025-07-18 18:58:01 -04:00
parent 8d87fca419
commit b3aa4719d9
5 changed files with 17 additions and 14 deletions

View File

@@ -30,6 +30,13 @@ PanelWindow {
implicitHeight: Theme.barHeight - 4
color: "transparent"
Component.onCompleted: {
let fonts = Qt.fontFamilies();
if (fonts.indexOf("Material Symbols Rounded") === -1) {
ToastService.showError("Please install Material Symbols Rounded and Restart your Shell. See README.md for instructions");
}
}
Connections {
function onTopBarTransparencyChanged() {
root.backgroundTransparency = Prefs.topBarTransparency;