wayprompt: capitalize name

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/
This commit is contained in:
pancho horrillo 2025-05-12 11:21:03 +02:00 committed by awwpotato
parent e020f1e815
commit 787a156f46
2 changed files with 2 additions and 2 deletions

View file

@ -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; {

View file

@ -1,6 +1,6 @@
{ lib, ... }:
{
name = "wayprompt";
name = "Wayprompt";
homepage = "https://git.sr.ht/~leon_plickat/wayprompt";
maintainers = [ lib.maintainers.nukdokplex ];
}