Merge branch 'main' of github.com:noctalia-dev/noctalia-shell

This commit is contained in:
Lemmy
2026-03-22 15:02:26 -04:00
5 changed files with 42 additions and 6 deletions
+19
View File
@@ -0,0 +1,19 @@
name: cachix
on:
push:
branches:
- main
workflow_dispatch:
jobs:
cache:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: cachix/install-nix-action@v31
- uses: cachix/cachix-action@v17
with:
name: "${{ secrets.CACHIX_CACHE_NAME }}"
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- run: nix build .
+19
View File
@@ -0,0 +1,19 @@
name: update flake
on:
schedule:
- cron: "0 0 * * *" # daily
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- uses: DeterminateSystems/nix-installer-action@main
- run: nix flake update
- uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "chore(flake): update flake.lock"
+2 -2
View File
@@ -101,10 +101,10 @@ Loader {
cache: true // Shares texture with Background's currentWallpaper
asynchronous: true
layer.enabled: true
layer.enabled: Settings.data.wallpaper.overviewBlur > 0 && !PowerProfileService.noctaliaPerformanceMode
layer.smooth: false
layer.effect: MultiEffect {
blurEnabled: !PowerProfileService.noctaliaPerformanceMode && (Settings.data.wallpaper.overviewBlur > 0)
blurEnabled: true
blur: Settings.data.wallpaper.overviewBlur
blurMax: 48
}
+2 -2
View File
@@ -120,10 +120,10 @@ Item {
mipmap: false
antialiasing: true
layer.enabled: true
layer.enabled: Settings.data.general.lockScreenBlur > 0 && !PowerProfileService.noctaliaPerformanceMode
layer.smooth: false
layer.effect: MultiEffect {
blurEnabled: !PowerProfileService.noctaliaPerformanceMode && (Settings.data.general.lockScreenBlur > 0)
blurEnabled: true
blur: Settings.data.general.lockScreenBlur
blurMax: 48
}
-2
View File
@@ -171,9 +171,7 @@ ShellRoot {
}
}
// ---------------------------------------------
// Delayed initialization and wizard/changelog
// ---------------------------------------------
Timer {
id: delayedInitTimer
running: false