Introduced Notification server, and added background thorugh quickshell

This commit is contained in:
2025-09-13 23:51:14 -04:00
parent 55a97da636
commit 7081a48426
13 changed files with 263 additions and 10 deletions

View File

@@ -22,6 +22,7 @@ Button {
property var releaseAction // When left clicking (release)
property var altAction // When right clicking
property var middleClickAction // When middle clicking
property color buttonTextColor: Appearance?.m3colors.m3onBackground ?? "black"
property color colBackground: ColorUtils.transparentize(Appearance?.colors.colLayer1Hover, 1) || "transparent"
property color colBackgroundHover: Appearance?.colors.colLayer1Hover ?? "#E5DFED"
@@ -197,5 +198,6 @@ Button {
contentItem: StyledText {
text: root.buttonText
color: root.buttonTextColor
}
}