From 60964ff845ec5965cde978377f3f73bcef84abe5 Mon Sep 17 00:00:00 2001 From: Aguirre Matteo <158215792+aguirre-matteo@users.noreply.github.com> Date: Wed, 7 May 2025 02:06:15 +0000 Subject: [PATCH] mako: fix example config (#6987) --- modules/services/mako.nix | 10 +++++----- tests/modules/services/mako/config | 10 +++++----- tests/modules/services/mako/example-config.nix | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/modules/services/mako.nix b/modules/services/mako.nix index afb55b37f..f31b289a2 100644 --- a/modules/services/mako.nix +++ b/modules/services/mako.nix @@ -81,15 +81,15 @@ in { actions = "true"; anchor = "top-right"; - backgroundColor = "#000000"; - borderColor = "#FFFFFF"; - borderRadius = "0"; - defaultTimeout = "0"; + background-color = "#000000"; + border-color = "#FFFFFF"; + border-radius = "0"; + default-timeout = "0"; font = "monospace 10"; height = "100"; width = "300"; icons = "true"; - ignoreTimeout = "false"; + ignore-timeout = "false"; layer = "top"; margin = "10"; markup = "true"; diff --git a/tests/modules/services/mako/config b/tests/modules/services/mako/config index 8cfda5eb9..7f8040c50 100644 --- a/tests/modules/services/mako/config +++ b/tests/modules/services/mako/config @@ -1,13 +1,13 @@ actions=true anchor=top-right -backgroundColor=#000000 -borderColor=#FFFFFF -borderRadius=0 -defaultTimeout=0 +background-color=#000000 +border-color=#FFFFFF +border-radius=0 +default-timeout=0 font=monospace 10 height=100 icons=true -ignoreTimeout=false +ignore-timeout=false layer=top margin=10 markup=true diff --git a/tests/modules/services/mako/example-config.nix b/tests/modules/services/mako/example-config.nix index f9397b233..562f3d20d 100644 --- a/tests/modules/services/mako/example-config.nix +++ b/tests/modules/services/mako/example-config.nix @@ -4,15 +4,15 @@ settings = { actions = true; anchor = "top-right"; - backgroundColor = "#000000"; - borderColor = "#FFFFFF"; - borderRadius = 0; - defaultTimeout = 0; + background-color = "#000000"; + border-color = "#FFFFFF"; + border-radius = 0; + default-timeout = 0; font = "monospace 10"; height = 100; width = 300; icons = true; - ignoreTimeout = false; + ignore-timeout = false; layer = "top"; margin = 10; markup = true;