Merge pull request #210 from ThatOneCalculator/feat/caffeine-widget

feat: keep awake bar widget
This commit is contained in:
Lemmy 2025-09-04 15:33:06 -04:00 committed by GitHub
commit 5d11e37687
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 28 additions and 0 deletions

View file

@ -18,6 +18,7 @@ Singleton {
"Clock": clockComponent,
"CustomButton": customButtonComponent,
"DarkModeToggle": darkModeToggle,
"KeepAwake": keepAwakeComponent,
"KeyboardLayout": keyboardLayoutComponent,
"MediaMini": mediaMiniComponent,
"Microphone": microphoneComponent,
@ -73,6 +74,9 @@ Singleton {
property Component keyboardLayoutComponent: Component {
KeyboardLayout {}
}
property Component keepAwakeComponent: Component {
KeepAwake {}
}
property Component mediaMiniComponent: Component {
MediaMini {}
}