1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
|
import Quickshell
import Quickshell.Wayland
import Quickshell.Io
import Quickshell.Hyprland
import QtQuick
import QtQuick.Layouts
ShellRoot {
id: root
// --- BLACKOUT THEME COLORS ---
property color colBg: "#000000" // True Black to match Ghostty
property color colFg: "#ffffff" // Pure White to match Oh-My-Posh
property color colMuted: "#313244" // Dark Grey (Surface1)
property color colCyan: "#89dceb" // Catppuccin Sky
property color colPurple: "#cba6f7" // Catppuccin Mauve
property color colRed: "#f38ba8" // Catppuccin Red
property color colYellow: "#f9e2af" // Catppuccin Yellow
property color colBlue: "#89b4fa" // Catppuccin Blue
// Font
property string fontFamily: "Iosevka Nerd Font Propo"
property int fontSize: 16
// System info properties
property string kernelVersion: "Arch"
property string powerProfile: ""
property int cpuUsage: 0
property int memUsage: 0
property int diskUsage: 0
property int volumeLevel: 0
property string activeWindow: "Window"
property string currentLayout: "Tile"
property string cpuTemp: "0"
property int cpuTempInt: parseInt(cpuTemp, 10)
property color tempColor: {
if (cpuTempInt < 50 ) return "#a6e3a1" // Green
else if (cpuTempInt < 70) return "#f9e2af" // Yellow
else return "#f38ba8" // Red
}
property color powerProfileColor: {
switch (powerProfile) {
case "power-saver": return "#a6e3a1"
case "balanced": return "#89b4fa"
case "performance": return "#f38ba8"
default: return "#bac2de"
}
}
property string weatherTemp: "0"
property var lastCpuIdle: 0
property var lastCpuTotal: 0
// Kernel version
Process {
id: kernelProc
command: ["uname", "-r"]
stdout: SplitParser {
onRead: data => { if (data) kernelVersion = data.trim() }
}
Component.onCompleted: running = true
}
// Power Profile
Process {
id: powerProfileProc
command: ["sh", "-c", "powerprofilesctl get"]
stdout: SplitParser {
onRead: data => {
const v = data.trim()
if (v != powerProfile) powerProfile = v
}
}
Component.onCompleted: running = true
}
// CPU usage
Process {
id: cpuProc
command: ["sh", "-c", "head -1 /proc/stat"]
stdout: SplitParser {
onRead: data => {
if (!data) return
var parts = data.trim().split(/\s+/)
var user = parseInt(parts[1]) || 0
var nice = parseInt(parts[2]) || 0
var system = parseInt(parts[3]) || 0
var idle = parseInt(parts[4]) || 0
var iowait = parseInt(parts[5]) || 0
var irq = parseInt(parts[6]) || 0
var softirq = parseInt(parts[7]) || 0
var total = user + nice + system + idle + iowait + irq + softirq
var idleTime = idle + iowait
if (lastCpuTotal > 0) {
var totalDiff = total - lastCpuTotal
var idleDiff = idleTime - lastCpuIdle
if (totalDiff > 0) cpuUsage = Math.round(100 * (totalDiff - idleDiff) / totalDiff)
}
lastCpuTotal = total
lastCpuIdle = idleTime
}
}
Component.onCompleted: running = true
}
// Memory usage
Process {
id: memProc
command: ["sh", "-c", "free | grep Mem"]
stdout: SplitParser {
onRead: data => {
if (!data) return
var parts = data.trim().split(/\s+/)
var total = parseInt(parts[1]) || 1
var used = parseInt(parts[2]) || 0
memUsage = Math.round(100 * used / total)
}
}
Component.onCompleted: running = true
}
// Weather
Process {
id: weatherProc
command: ["sh", "-c", "curl -s 'https://wttr.in/prayagraj?format=j1' | jq -r '.current_condition[].FeelsLikeC'"]
stdout: SplitParser {
onRead: data => {
if (!data) return
var temp = parseInt(data.trim()) || 0
weatherTemp = temp + "°C"
}
}
Component.onCompleted: running = true
}
// Disk usage
Process {
id: diskProc
command: ["sh", "-c", "df / | tail -1"]
stdout: SplitParser {
onRead: data => {
if (!data) return
var parts = data.trim().split(/\s+/)
var percentStr = parts[4] || "0%"
diskUsage = parseInt(percentStr.replace('%', '')) || 0
}
}
Component.onCompleted: running = true
}
// Volume level
Process {
id: volProc
command: ["wpctl", "get-volume", "@DEFAULT_AUDIO_SINK@"]
stdout: SplitParser {
onRead: data => {
if (!data) return
var match = data.match(/Volume:\s*([\d.]+)/)
if (match) volumeLevel = Math.round(parseFloat(match[1]) * 100)
}
}
Component.onCompleted: running = true
}
// Active window title
Process {
id: windowProc
command: ["sh", "-c", "hyprctl activewindow -j | jq -r '.title // empty'"]
stdout: SplitParser {
onRead: data => { if (data && data.trim()) activeWindow = data.trim() }
}
Component.onCompleted: running = true
}
// Current layout
Process {
id: layoutProc
command: ["sh", "-c", "hyprctl activewindow -j | jq -r 'if .floating then \"Floating\" elif .fullscreen == 1 then \"Fullscreen\" else \"Tiled\" end'"]
stdout: SplitParser {
onRead: data => { if (data && data.trim()) currentLayout = data.trim() }
}
Component.onCompleted: running = true
}
// CPU Temp
Process {
id: cpuTempProc
command: ["sh", "-c", "sensors | awk '/Tctl:/ {print $2}'"]
stdout: SplitParser {
onRead: data => { if (data && data.length > 0) cpuTemp = data.trim() }
}
}
// Timers
Timer {
interval: 2000; running: true; repeat: true
onTriggered: {
cpuProc.running = true; memProc.running = true; diskProc.running = true
volProc.running = true; cpuTempProc.running = true; powerProfileProc.running = true
}
}
Timer { interval: 900000; running: true; repeat: true; onTriggered: weatherProc.running = true }
Connections {
target: Hyprland
function onRawEvent(event) { windowProc.running = true; layoutProc.running = true }
}
Timer {
interval: 200; running: true; repeat: true
onTriggered: { windowProc.running = true; layoutProc.running = true }
}
Variants {
model: Quickshell.screens
PanelWindow {
property var modelData
screen: modelData
anchors { top: true; left: true; right: true }
implicitHeight: 30
color: root.colBg
Rectangle {
anchors.fill: parent
color: root.colBg
RowLayout {
anchors.fill: parent; spacing: 0
Item { width: 8 }
// Arch Icon
Rectangle {
Layout.preferredWidth: 24; Layout.preferredHeight: 24; color: "transparent"
Image {
anchors.fill: parent
source: "file:///home/subh/.config/quickshell/icons/arch.png"
fillMode: Image.PreserveAspectFit
}
}
Item { width: 8 }
// Workspaces
Repeater {
model: 9
Rectangle {
Layout.preferredWidth: 20; Layout.preferredHeight: parent.height; color: "transparent"
property var workspace: Hyprland.workspaces.values.find(ws => ws.id === index + 1) ?? null
property bool isActive: Hyprland.focusedWorkspace?.id === (index + 1)
property bool hasWindows: workspace !== null
Text {
text: index + 1
color: parent.isActive ? root.colCyan : (parent.hasWindows ? root.colFg : root.colMuted)
font.pixelSize: root.fontSize; font.family: root.fontFamily; font.bold: true
anchors.centerIn: parent
}
Rectangle {
width: 20; height: 3
color: parent.isActive ? root.colPurple : "transparent"
anchors.horizontalCenter: parent.horizontalCenter; anchors.bottom: parent.bottom
}
MouseArea {
anchors.fill: parent
onClicked: Hyprland.dispatch("workspace " + (index + 1))
}
}
}
// Separator
Rectangle { Layout.preferredWidth: 1; Layout.preferredHeight: 16; Layout.leftMargin: 8; Layout.rightMargin: 8; color: root.colMuted }
// Layout
Text { text: currentLayout; color: root.colFg; font.pixelSize: root.fontSize; font.family: root.fontFamily; font.bold: true }
// Separator
Rectangle { Layout.preferredWidth: 1; Layout.preferredHeight: 16; Layout.leftMargin: 8; Layout.rightMargin: 8; color: root.colMuted }
// Window Title
Text {
text: activeWindow; color: root.colPurple; font.pixelSize: root.fontSize; font.family: root.fontFamily; font.bold: true
Layout.fillWidth: true; Layout.leftMargin: 8; elide: Text.ElideRight; maximumLineCount: 1
}
// System Stats (Right Side)
Text { text: " " + kernelVersion; color: root.colCyan; font.pixelSize: root.fontSize; font.family: root.fontFamily; font.bold: true; Layout.rightMargin: 8 }
Rectangle { Layout.preferredWidth: 1; Layout.preferredHeight: 16; Layout.rightMargin: 8; color: root.colMuted }
Text { text: " " + powerProfile; color: powerProfileColor; font.pixelSize: root.fontSize; font.family: root.fontFamily; font.bold: true; Layout.rightMargin: 8 }
Rectangle { Layout.preferredWidth: 1; Layout.preferredHeight: 16; Layout.rightMargin: 8; color: root.colMuted }
Text { text: " " + weatherTemp; color: root.colYellow; font.pixelSize: root.fontSize; font.family: root.fontFamily; font.bold: true; Layout.rightMargin: 8 }
Rectangle { Layout.preferredWidth: 1; Layout.preferredHeight: 16; Layout.rightMargin: 8; color: root.colMuted }
Text { text: " " + cpuTemp; color: tempColor; font.pixelSize: root.fontSize; font.family: root.fontFamily; font.bold: true; Layout.rightMargin: 8 }
Rectangle { Layout.preferredWidth: 1; Layout.preferredHeight: 16; Layout.rightMargin: 8; color: root.colMuted }
Text { text: " " + cpuUsage + "%"; color: root.colYellow; font.pixelSize: root.fontSize; font.family: root.fontFamily; font.bold: true; Layout.rightMargin: 8 }
Rectangle { Layout.preferredWidth: 1; Layout.preferredHeight: 16; Layout.rightMargin: 8; color: root.colMuted }
Text { text: " " + memUsage + "%"; color: root.colCyan; font.pixelSize: root.fontSize; font.family: root.fontFamily; font.bold: true; Layout.rightMargin: 8 }
Rectangle { Layout.preferredWidth: 1; Layout.preferredHeight: 16; Layout.rightMargin: 8; color: root.colMuted }
Text { text: " " + diskUsage + "%"; color: root.colBlue; font.pixelSize: root.fontSize; font.family: root.fontFamily; font.bold: true; Layout.rightMargin: 8 }
Rectangle { Layout.preferredWidth: 1; Layout.preferredHeight: 16; Layout.rightMargin: 8; color: root.colMuted }
Text { text: " " + volumeLevel + "%"; color: root.colPurple; font.pixelSize: root.fontSize; font.family: root.fontFamily; font.bold: true; Layout.rightMargin: 8 }
Rectangle { Layout.preferredWidth: 1; Layout.preferredHeight: 16; Layout.rightMargin: 8; color: root.colMuted }
// Clock
Text {
id: clockText
text: Qt.formatDateTime(new Date(), "ddd, MMM dd - HH:mm")
color: root.colFg // White clock
font.pixelSize: root.fontSize; font.family: root.fontFamily; font.bold: true; Layout.rightMargin: 8
Timer {
interval: 1000; running: true; repeat: true
onTriggered: clockText.text = Qt.formatDateTime(new Date(), "ddd, MMM dd - HH:mm:ss")
}
}
Item { width: 8 }
}
}
}
}
}
|