diff options
| author | subh <subh@example.com> | 2026-01-23 23:47:40 +0530 |
|---|---|---|
| committer | subh <subh@example.com> | 2026-01-23 23:47:40 +0530 |
| commit | 14c0bfd5d4f63f49196e818c2c2bbd2488d8f4fe (patch) | |
| tree | 1374f93499d5af23a46f881bfcf3e2365ae49590 /quickshell | |
| parent | cc3e2b53f812ec1d5b5a02a4c7ecffba509b996c (diff) | |
Changed font for quickshell and toggled blur on
Diffstat (limited to 'quickshell')
| -rw-r--r-- | quickshell/shell.qml | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/quickshell/shell.qml b/quickshell/shell.qml index f9acfeb..bc0864a 100644 --- a/quickshell/shell.qml +++ b/quickshell/shell.qml @@ -19,8 +19,8 @@ ShellRoot { property color colBlue: "#7aa2f7" // Font - property string fontFamily: "JetBrainsMono Nerd Font" - property int fontSize: 14 + property string fontFamily: "Iosevka Nerd Font Propo" + property int fontSize: 16 // System info properties property string kernelVersion: "Linux" @@ -292,7 +292,7 @@ ShellRoot { color: parent.isActive ? root.colCyan : (parent.hasWindows ? root.colCyan : root.colMuted) font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true anchors.centerIn: parent } @@ -325,7 +325,7 @@ ShellRoot { color: root.colFg font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.leftMargin: 5 Layout.rightMargin: 5 } @@ -344,7 +344,7 @@ ShellRoot { color: root.colPurple font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.fillWidth: true Layout.leftMargin: 8 elide: Text.ElideRight @@ -352,11 +352,11 @@ ShellRoot { } Text { - text: " " + weatherTemp + text: " " + weatherTemp color: root.colRed font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.rightMargin: 8 } @@ -373,7 +373,7 @@ ShellRoot { color: root.colRed font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.rightMargin: 8 } @@ -389,11 +389,11 @@ ShellRoot { Text { - text: " " + cpuUsage + "%" + text: " " + cpuUsage + "%" color: root.colYellow font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.rightMargin: 8 } @@ -407,11 +407,11 @@ ShellRoot { } Text { - text: " " + memUsage + "%" + text: " " + memUsage + "%" color: root.colCyan font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.rightMargin: 8 } @@ -425,11 +425,11 @@ ShellRoot { } Text { - text: " " + diskUsage + "%" + text: " " + diskUsage + "%" color: root.colBlue font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.rightMargin: 8 } @@ -443,11 +443,11 @@ ShellRoot { } Text { - text: " " + volumeLevel + "%" + text: " " + volumeLevel + "%" color: root.colPurple font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.rightMargin: 8 } @@ -466,7 +466,7 @@ ShellRoot { color: root.colCyan font.pixelSize: root.fontSize font.family: root.fontFamily - font.bold: false + font.bold: true Layout.rightMargin: 8 Timer { |
