this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

use awww for wallpaper management

+5 -3
+1
flake.nix
··· 19 19 inputs.nixpkgs.follows = "nixpkgs"; 20 20 }; 21 21 22 + awww.url = "git+https://codeberg.org/LGFae/awww"; 22 23 neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay"; 23 24 }; 24 25
+2 -1
users/hannah/desktop.nix
··· 1 - { pkgs, ... }: 1 + { inputs, pkgs, ... }: 2 2 { 3 3 programs = { 4 4 niri.enable = true; ··· 28 28 dconf 29 29 gsettings-desktop-schemas 30 30 wl-mirror 31 + inputs.awww.packages.${pkgs.stdenv.hostPlatform.system}.awww 31 32 ]; 32 33 }
+1 -1
users/hannah/niri/autostart.nix
··· 7 7 { command = ["xwayland-satellite"]; } 8 8 { command = ["qs"]; } 9 9 { command = ["vesktop"]; } 10 - { command = ["swww-daemon"]; } 10 + { command = ["awww-daemon"]; } 11 11 #{ command = ["${pkgs.swaybg}/bin/swaybg" "-o" "DP-1" "-i" "/home/lysec/nixos/assets/wallpapers/clouds.png" "-m" "fill"]; } 12 12 #{ command = ["sh" "-c" "swww-daemon & swww img /home/lysec/nixos/wallpapers/cloud.png"]; } 13 13 ];
+1 -1
users/hannah/quickshell/qml/Services/WallpaperManager.qml
··· 109 109 110 110 Process { 111 111 id: changeWallpaperProcess 112 - command: ["swww", "img", "--resize", Settings.settings.wallpaperResize, "--transition-fps", Settings.settings.transitionFps.toString(), "--transition-type", transitionType, "--transition-duration", Settings.settings.transitionDuration.toString(), currentWallpaper, "--outputs", "all"] 112 + command: ["awww", "img", "--resize", Settings.settings.wallpaperResize, "--transition-fps", Settings.settings.transitionFps.toString(), "--transition-type", transitionType, "--transition-duration", Settings.settings.transitionDuration.toString(), currentWallpaper ] 113 113 running: false 114 114 } 115 115