From 0e268f09708496dd4fcb4eeb65f530c24e551fa1 Mon Sep 17 00:00:00 2001 From: autumn-the-kitty-cat Date: Fri, 10 Apr 2026 20:20:06 -0400 Subject: [PATCH] fix: handle the name switch of swww to awww --- host/pc/common/dwl/config.h | 6 +++--- host/pc/common/dwl/dwl.nix | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/host/pc/common/dwl/config.h b/host/pc/common/dwl/config.h index d7300d6..da57229 100644 --- a/host/pc/common/dwl/config.h +++ b/host/pc/common/dwl/config.h @@ -105,9 +105,9 @@ static const char *const autostart[] = { // Set the resolution "wlr-randr", "--output", "DP-2", "--mode", "2560x1440@180Hz", NULL, // Start the wallpaper daemon - "swww-daemon", NULL, + "awww-daemon", NULL, // Include the wallpaper - "swww", "img", WALLPAPER, "-t", "none", NULL, + "awww", "img", WALLPAPER, "-t", "none", NULL, // Start waybar "waybar", NULL, // Needed for screencasting @@ -183,7 +183,7 @@ static const enum libinput_config_tap_button_map button_map = LIBINPUT_CONFIG_TA #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } /* commands */ -static const char *termcmd[] = { "ghostty", NULL }; +static const char *termcmd[] = { "foot", NULL }; static const char *menucmd[] = { "rofi", "-show", "drun", NULL }; static const char *powrcmd[] = { "rofi", "-show", "pm", "-modi", "pm:rofi-power-menu", "--choices", "suspend/reboot/shutdown", NULL }; static const char *emjicmd[] = { "rofimoji", "--action", "copy", NULL }; diff --git a/host/pc/common/dwl/dwl.nix b/host/pc/common/dwl/dwl.nix index f7d2198..f2d4dbf 100644 --- a/host/pc/common/dwl/dwl.nix +++ b/host/pc/common/dwl/dwl.nix @@ -3,7 +3,7 @@ environment.systemPackages = [ pkgs.gscreenshot pkgs.wlr-randr - pkgs.swww + pkgs.awww ]; programs.dwl = { enable = true;