add quickshell

This commit is contained in:
Zoty 2026-04-15 10:38:34 -03:00
parent 3d48e35de5
commit 10960f620d
Signed by: Zoty
SSH key fingerprint: SHA256:WsGEGivgl37t3Mth6uugXMOgMCTR7QolIepNbC+j/tA
32 changed files with 1415 additions and 11 deletions

47
quickshell/RamMonitor.qml Normal file
View file

@ -0,0 +1,47 @@
pragma Singleton
import Quickshell
import Quickshell.Io
import QtQuick
Singleton {
id: root
property int usedMb: 0
property int totalMb: 0
property int usage: 0
Timer {
interval: 2000
running: true
repeat: true
triggeredOnStart: true
onTriggered: {
_proc.running = false
_proc.running = true
}
}
Process {
id: _proc
command: ["bash", "-c", "grep -E '^(MemTotal|MemAvailable):' /proc/meminfo | awk '{print $2}'"]
stdout: SplitParser {
property int _total: 0
property int _avail: 0
property int _lines: 0
onRead: line => {
const v = parseInt(line.trim())
if (isNaN(v)) return
if (_lines === 0) _total = v
else _avail = v
_lines++
if (_lines === 2) {
root.totalMb = Math.round(_total / 1024)
root.usedMb = Math.round((_total - _avail) / 1024)
root.usage = Math.round((1 - _avail / _total) * 100)
_lines = 0
}
}
}
}
}