From 9d8ec6d7d23a9efa3282e23b8f5a7a75ae63fd6b Mon Sep 17 00:00:00 2001 From: Evan Reichard Date: Tue, 2 Jun 2026 21:11:20 -0400 Subject: [PATCH] chore: rename swww to awww --- .../default.nix | 2 +- .../evanreichard@lin-va-thinkpad/default.nix | 2 +- .../evanreichard@lin-va-utility/default.nix | 2 +- .../home/services/{swww => awww}/default.nix | 28 +++++++++---------- 4 files changed, 17 insertions(+), 17 deletions(-) rename modules/home/services/{swww => awww}/default.nix (64%) diff --git a/homes/aarch64-linux/evanreichard@lin-va-mbp-personal/default.nix b/homes/aarch64-linux/evanreichard@lin-va-mbp-personal/default.nix index c37542a..dabb9a5 100755 --- a/homes/aarch64-linux/evanreichard@lin-va-mbp-personal/default.nix +++ b/homes/aarch64-linux/evanreichard@lin-va-mbp-personal/default.nix @@ -20,7 +20,7 @@ in services = { ssh-agent = enabled; fusuma = enabled; - swww = enabled; + awww = enabled; }; security = { diff --git a/homes/x86_64-linux/evanreichard@lin-va-thinkpad/default.nix b/homes/x86_64-linux/evanreichard@lin-va-thinkpad/default.nix index 7b3293e..b36152b 100755 --- a/homes/x86_64-linux/evanreichard@lin-va-thinkpad/default.nix +++ b/homes/x86_64-linux/evanreichard@lin-va-thinkpad/default.nix @@ -20,7 +20,7 @@ in services = { ssh-agent = enabled; fusuma = enabled; - swww = enabled; + awww = enabled; poweralertd = enabled; }; diff --git a/homes/x86_64-linux/evanreichard@lin-va-utility/default.nix b/homes/x86_64-linux/evanreichard@lin-va-utility/default.nix index f4ff7a3..2e47f63 100755 --- a/homes/x86_64-linux/evanreichard@lin-va-utility/default.nix +++ b/homes/x86_64-linux/evanreichard@lin-va-utility/default.nix @@ -20,7 +20,7 @@ in services = { ssh-agent = enabled; fusuma = enabled; - swww = enabled; + awww = enabled; }; security = { diff --git a/modules/home/services/swww/default.nix b/modules/home/services/awww/default.nix similarity index 64% rename from modules/home/services/swww/default.nix rename to modules/home/services/awww/default.nix index 83d27ce..c04cc68 100644 --- a/modules/home/services/swww/default.nix +++ b/modules/home/services/awww/default.nix @@ -5,23 +5,23 @@ , ... }: let - cfg = config.${namespace}.services.swww; + cfg = config.${namespace}.services.awww; in { - options.${namespace}.services.swww = { - enable = lib.mkEnableOption "swww wallpaper service"; + options.${namespace}.services.awww = { + enable = lib.mkEnableOption "awww wallpaper service"; }; config = lib.mkIf cfg.enable { home.packages = with pkgs; [ - swww + awww ]; systemd.user = { services = { - swww-daemon = { + awww-daemon = { Unit = { - Description = "SWWW Wallpaper Daemon"; + Description = "AWWW Wallpaper Daemon"; After = [ "graphical-session.target" ]; }; @@ -31,7 +31,7 @@ in Service = { Type = "simple"; - ExecStart = "${pkgs.swww}/bin/swww-daemon"; + ExecStart = "${pkgs.awww}/bin/awww-daemon"; Restart = "on-failure"; RestartSec = 5; }; @@ -39,28 +39,28 @@ in change-wallpaper = { Unit = { - Description = "SWWW Wallpaper Changer"; - After = [ "swww-daemon.service" ]; - Requires = [ "swww-daemon.service" ]; + Description = "AWWW Wallpaper Changer"; + After = [ "awww-daemon.service" ]; + Requires = [ "awww-daemon.service" ]; }; Install = { - WantedBy = [ "swww-daemon.service" ]; + WantedBy = [ "awww-daemon.service" ]; }; Service = { Type = "oneshot"; ExecStart = "${pkgs.writeShellScript "change-wallpaper-script" '' WALLPAPER=$(${pkgs.findutils}/bin/find $HOME/Wallpapers -type f | ${pkgs.coreutils}/bin/shuf -n 1) - ${pkgs.swww}/bin/swww img "$WALLPAPER" --transition-type random + ${pkgs.awww}/bin/awww img "$WALLPAPER" --transition-type random ''}"; }; }; }; - timers.swww-schedule = { + timers.awww-schedule = { Unit = { - Description = "SWWW Wallpaper Schedule"; + Description = "AWWW Wallpaper Schedule"; }; Install = {