This commit is contained in:
2026-01-23 20:20:57 -06:00
parent 9d5e396152
commit 13c920fd32
37 changed files with 2312 additions and 107 deletions

View File

@@ -60,7 +60,7 @@ Rectangle {
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
text: root.pluginApi?.mainInstance?.updateCount.toString()
color: root.hovered ? Color.mOnHover : Color.mOnSurface
pointSize: Style.fontSizeS
pointSize: Style.barFontSize
}
}

View File

@@ -1,12 +1,13 @@
{
"id": "update-count",
"name": "Update Count",
"version": "1.0.6",
"version": "1.0.9",
"minNoctaliaVersion": "3.6.0",
"author": "BukoMoon",
"license": "GPLv3",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"description": "Checks for system updates and shows the update count. Click to run update command in a terminal.",
"tags": ["Bar", "System"],
"entryPoints": {
"main": "Main.qml",
"barWidget": "BarWidget.qml",

View File

@@ -2,13 +2,13 @@
{
"name": "yay",
"cmdCheck": "command -v yay >/dev/null 2>&1",
"cmdGetNumUpdates": "yay -Sy >/dev/null 2>&1; yay -Quq 2>/dev/null | wc -l",
"cmdGetNumUpdates": "yay -Qu 2>/dev/null | wc -l",
"cmdDoSystemUpdate": "yay -Syu"
},
{
"name": "paru",
"cmdCheck": "command -v paru >/dev/null 2>&1",
"cmdGetNumUpdates": "paru -Sy >/dev/null 2>&1; paru -Quq 2>/dev/null | wc -l",
"cmdGetNumUpdates": "paru -Qu 2>/dev/null | wc -l",
"cmdDoSystemUpdate": "paru -Syu"
},
{