From 787a156f461b09388150dd2b82f977914968c05a Mon Sep 17 00:00:00 2001 From: pancho horrillo Date: Mon, 12 May 2025 11:21:03 +0200 Subject: [PATCH] wayprompt: capitalize name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Seems that lowercase `wayprompt` refers to the actual binary, but since the project provides three different ones, using the capitalized form (as shown, albeit inconsistently, in its README¹) will, I think, better identify the project as a whole. Note that all three binaries are configured by the same configuration file that this module provides. ¹: https://git.sr.ht/~leon_plickat/wayprompt/ --- modules/wayprompt/hm.nix | 2 +- modules/wayprompt/meta.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/wayprompt/hm.nix b/modules/wayprompt/hm.nix index 15a10544..168dc60d 100644 --- a/modules/wayprompt/hm.nix +++ b/modules/wayprompt/hm.nix @@ -6,7 +6,7 @@ let in { options.stylix.targets.wayprompt.enable = - config.lib.stylix.mkEnableTarget "wayprompt" true; + config.lib.stylix.mkEnableTarget "Wayprompt" true; config = lib.mkIf (config.stylix.enable && cfg.enable) { programs.wayprompt.settings.colours = with config.lib.stylix.colors; { diff --git a/modules/wayprompt/meta.nix b/modules/wayprompt/meta.nix index cadf63c1..3fc4eec1 100644 --- a/modules/wayprompt/meta.nix +++ b/modules/wayprompt/meta.nix @@ -1,6 +1,6 @@ { lib, ... }: { - name = "wayprompt"; + name = "Wayprompt"; homepage = "https://git.sr.ht/~leon_plickat/wayprompt"; maintainers = [ lib.maintainers.nukdokplex ]; }