Add ArchUpdater widget and service; update settings for Arch updates

This commit is contained in:
Anas Khalifa 2025-08-24 00:49:41 +03:00
parent b85d68f4cb
commit 85e9031df8
No known key found for this signature in database
GPG key ID: 1B6C212010BABA2C
5 changed files with 285 additions and 2 deletions

View file

@ -127,6 +127,17 @@ ColumnLayout {
Settings.data.bar.alwaysShowBatteryPercentage = checked
}
}
NToggle {
visible: ArchUpdaterService.isArchBased
label: "Show Arch Updater"
description: "Show the Arch Linux updates widget."
checked: Settings.data.bar.showArchUpdater
onToggled: checked => {
Settings.data.bar.showArchUpdater = checked
}
}
NDivider {
Layout.fillWidth: true