service/tray: add "Communications" category

Closes #28
This commit is contained in:
outfoxxed 2025-03-27 14:01:41 -07:00
parent 69430e3873
commit fa74449139
Signed by untrusted user: outfoxxed
GPG key ID: 4C88A185FB89301E
3 changed files with 11 additions and 10 deletions

View file

@ -44,13 +44,15 @@ Q_NAMESPACE;
QML_ELEMENT;
enum Enum : quint8 {
/// The fallback category for general applications or anything that does
/// not fit into a different category.
ApplicationStatus = 0,
/// Hardware controls like battery indicators or volume control.
Hardware = 0,
/// System services such as IMEs or disk indexing.
SystemServices = 1,
/// Hardware controls like battery indicators or volume control.
Hardware = 2,
/// The fallback category for general applications or anything that does
/// not fit into a different category.
ApplicationStatus = 2,
/// Communication related applications such as instant messengers or email clients.
Communications = 3,
};
Q_ENUM_NS(Enum);
} // namespace Category