forked from Shinonome/dots-hyprland
40 lines
1.1 KiB
QML
40 lines
1.1 KiB
QML
pragma Singleton
|
|
|
|
import qs.modules.common
|
|
import qs.modules.common.functions
|
|
import QtQuick
|
|
import Quickshell
|
|
import Quickshell.Io
|
|
|
|
Singleton {
|
|
id: root
|
|
|
|
property bool packageManagerRunning: false
|
|
property bool downloadRunning: false
|
|
|
|
function refresh() {
|
|
packageManagerRunning = false;
|
|
downloadRunning = false;
|
|
detectPackageManagerProc.running = false;
|
|
detectPackageManagerProc.running = true;
|
|
detectDownloadProc.running = false;
|
|
detectDownloadProc.running = true;
|
|
}
|
|
|
|
Process {
|
|
id: detectPackageManagerProc
|
|
command: ["bash", "-c", "pidof pacman yay paru dnf zypper apt apx xbps snap apk yum epsi pikman"]
|
|
onExited: (exitCode, exitStatus) => {
|
|
root.packageManagerRunning = (exitCode === 0);
|
|
}
|
|
}
|
|
|
|
Process {
|
|
id: detectDownloadProc
|
|
command: ["bash", "-c", "pidof curl wget aria2c yt-dlp || ls ~/Downloads | grep -E '\.crdownload$|\.part$'"]
|
|
onExited: (exitCode, exitStatus) => {
|
|
root.downloadRunning = (exitCode === 0);
|
|
}
|
|
}
|
|
}
|