From e4114f41ea1fd6d2b32af60c60385417c98f666f Mon Sep 17 00:00:00 2001 From: Krystian Date: Sat, 1 Nov 2025 14:57:20 +0100 Subject: [PATCH 01/28] add mako: tldr pages for mako and makoctl --- pages/linux/mako.md | 30 +++++++++++++++++++++++++++ pages/linux/makoctl-dismiss.md | 24 ++++++++++++++++++++++ pages/linux/makoctl-invoke.md | 12 +++++++++++ pages/linux/makoctl-mode.md | 25 +++++++++++++++++++++++ pages/linux/makoctl.md | 37 ++++++++++++++++++++++++++++++++++ 5 files changed, 128 insertions(+) create mode 100644 pages/linux/mako.md create mode 100644 pages/linux/makoctl-dismiss.md create mode 100644 pages/linux/makoctl-invoke.md create mode 100644 pages/linux/makoctl-mode.md create mode 100644 pages/linux/makoctl.md diff --git a/pages/linux/mako.md b/pages/linux/mako.md new file mode 100644 index 00000000000000..bf3c4245a9618c --- /dev/null +++ b/pages/linux/mako.md @@ -0,0 +1,30 @@ +# mako + +> Notification daemon for Wayland compositors. +> More information: or `man 5 mako`. + +- Start the mako notification daemon: + +`mako` + +- Start with a custom configuration file: + +`mako --config {{path/to/config}}` + +- Set maximum number of visible notifications: + +`mako --max-visible {{5}}` + +- Set default timeout in milliseconds (0 to disable): + +`mako --default-timeout {{2000}}` + +- Group notifications by application name: + +`mako --group-by {{app-name}}` + +- Display help: + +`mako --help` + + diff --git a/pages/linux/makoctl-dismiss.md b/pages/linux/makoctl-dismiss.md new file mode 100644 index 00000000000000..33d13c6fb82407 --- /dev/null +++ b/pages/linux/makoctl-dismiss.md @@ -0,0 +1,24 @@ +# makoctl dismiss + +> Dismiss notifications in mako. +> More information: or .. + +- Dismiss the most recent notification: + +`makoctl dismiss` + +- Dismiss a specific notification by ID: + +`makoctl dismiss -n {{notification_id}}` + +- Dismiss all notifications: + +`makoctl dismiss --all` + +- Dismiss all notifications in the same group: + +`makoctl dismiss --group` + +- Dismiss without adding to history: + +`makoctl dismiss --no-history` \ No newline at end of file diff --git a/pages/linux/makoctl-invoke.md b/pages/linux/makoctl-invoke.md new file mode 100644 index 00000000000000..ad08dcbdf73927 --- /dev/null +++ b/pages/linux/makoctl-invoke.md @@ -0,0 +1,12 @@ +# makoctl invoke + +> Invoke actions on notifications in mako. +> More information: or .. + +- Invoke the default action on the most recent notification: + +`makoctl invoke` + +- Invoke a specific action on a notification (if not specified, default is used): + +`makoctl invoke -n {{notification_id}} {{action_name}}` \ No newline at end of file diff --git a/pages/linux/makoctl-mode.md b/pages/linux/makoctl-mode.md new file mode 100644 index 00000000000000..82e074388cea15 --- /dev/null +++ b/pages/linux/makoctl-mode.md @@ -0,0 +1,25 @@ +# makoctl mode + +> Manage notification modes in mako. +> Modes can be used to change notification behavior (e.g., do-not-disturb). +> More information: or .. + +- List all currently active modes: + +`makoctl mode` + +- Add one or more modes: + +`makoctl mode -a {{do-not-disturb}}` + +- Remove one or more modes: + +`makoctl mode -r {{do-not-disturb}}` + +- Toggle a mode (add if absent, remove if present): + +`makoctl mode -t {{do-not-disturb}}` + +- Set specific modes, replacing all current modes: + +`makoctl mode -s {{mode1}} {{mode2}}` \ No newline at end of file diff --git a/pages/linux/makoctl.md b/pages/linux/makoctl.md new file mode 100644 index 00000000000000..bbac48903aedc6 --- /dev/null +++ b/pages/linux/makoctl.md @@ -0,0 +1,37 @@ +# makoctl + +> Control the mako daemon. +> Sends IPC commands to the running mako daemon. Some subcommands such as `dismiss`, `invoke`, and `mode` have their own usage documentation. +> More information: or . + +- List all current notifications: + +`makoctl list` + +- List notification history: + +`makoctl history` + +- Reload the mako configuration file: + +`makoctl reload` + +- Restore the most recently expired notification from history: + +`makoctl restore` + +- Display help and all available subcommands: + +`makoctl help` + +- View documentation for dismissing notifications: + +`tldr makoctl-dismiss` + +- View documentation for invoking notification actions: + +`tldr makoctl-invoke` + +- View documentation for managing modes: + +`tldr makoctl-mode` \ No newline at end of file From 01e024a5474f0a78acf2fbf15a17d2cb4568c591 Mon Sep 17 00:00:00 2001 From: Krystian Date: Sat, 1 Nov 2025 15:06:04 +0100 Subject: [PATCH 02/28] Added reference to makoctl in mako entry --- pages/linux/mako.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/linux/mako.md b/pages/linux/mako.md index bf3c4245a9618c..66503f9f9d83c7 100644 --- a/pages/linux/mako.md +++ b/pages/linux/mako.md @@ -1,6 +1,7 @@ # mako > Notification daemon for Wayland compositors. +> Can be controlled with `makoctl`. > More information: or `man 5 mako`. - Start the mako notification daemon: @@ -27,4 +28,7 @@ `mako --help` +- View documentation for controlling mako: + +`tldr makoctl` From c6b6d15de4305cfeea83037f9519bef86c730aec Mon Sep 17 00:00:00 2001 From: Krystian Date: Sat, 1 Nov 2025 15:33:19 +0100 Subject: [PATCH 03/28] add mako entry: ran tests this time --- pages/linux/mako.md | 3 +-- pages/linux/makoctl-dismiss.md | 4 ++-- pages/linux/makoctl-invoke.md | 4 ++-- pages/linux/makoctl-mode.md | 4 ++-- pages/linux/makoctl.md | 4 ++-- 5 files changed, 9 insertions(+), 10 deletions(-) diff --git a/pages/linux/mako.md b/pages/linux/mako.md index 66503f9f9d83c7..7e73a4b574df72 100644 --- a/pages/linux/mako.md +++ b/pages/linux/mako.md @@ -2,7 +2,7 @@ > Notification daemon for Wayland compositors. > Can be controlled with `makoctl`. -> More information: or `man 5 mako`. +> More information: . - Start the mako notification daemon: @@ -31,4 +31,3 @@ - View documentation for controlling mako: `tldr makoctl` - diff --git a/pages/linux/makoctl-dismiss.md b/pages/linux/makoctl-dismiss.md index 33d13c6fb82407..b9394c005a06ad 100644 --- a/pages/linux/makoctl-dismiss.md +++ b/pages/linux/makoctl-dismiss.md @@ -1,7 +1,7 @@ # makoctl dismiss > Dismiss notifications in mako. -> More information: or .. +> More information: . - Dismiss the most recent notification: @@ -21,4 +21,4 @@ - Dismiss without adding to history: -`makoctl dismiss --no-history` \ No newline at end of file +`makoctl dismiss --no-history` diff --git a/pages/linux/makoctl-invoke.md b/pages/linux/makoctl-invoke.md index ad08dcbdf73927..0c7eb7756c0f25 100644 --- a/pages/linux/makoctl-invoke.md +++ b/pages/linux/makoctl-invoke.md @@ -1,7 +1,7 @@ # makoctl invoke > Invoke actions on notifications in mako. -> More information: or .. +> More information: . - Invoke the default action on the most recent notification: @@ -9,4 +9,4 @@ - Invoke a specific action on a notification (if not specified, default is used): -`makoctl invoke -n {{notification_id}} {{action_name}}` \ No newline at end of file +`makoctl invoke -n {{notification_id}} {{action_name}}` diff --git a/pages/linux/makoctl-mode.md b/pages/linux/makoctl-mode.md index 82e074388cea15..1b60e3151614ee 100644 --- a/pages/linux/makoctl-mode.md +++ b/pages/linux/makoctl-mode.md @@ -2,7 +2,7 @@ > Manage notification modes in mako. > Modes can be used to change notification behavior (e.g., do-not-disturb). -> More information: or .. +> More information: . - List all currently active modes: @@ -22,4 +22,4 @@ - Set specific modes, replacing all current modes: -`makoctl mode -s {{mode1}} {{mode2}}` \ No newline at end of file +`makoctl mode -s {{mode1}} {{mode2}}` diff --git a/pages/linux/makoctl.md b/pages/linux/makoctl.md index bbac48903aedc6..3a63d14e85847e 100644 --- a/pages/linux/makoctl.md +++ b/pages/linux/makoctl.md @@ -2,7 +2,7 @@ > Control the mako daemon. > Sends IPC commands to the running mako daemon. Some subcommands such as `dismiss`, `invoke`, and `mode` have their own usage documentation. -> More information: or . +> More information: . - List all current notifications: @@ -34,4 +34,4 @@ - View documentation for managing modes: -`tldr makoctl-mode` \ No newline at end of file +`tldr makoctl-mode` From e05af4a8aa615d9f4def82a661c5fb361f1aba88 Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Sat, 1 Nov 2025 18:47:32 +0100 Subject: [PATCH 04/28] Update pages/linux/mako.md Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/mako.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/mako.md b/pages/linux/mako.md index 7e73a4b574df72..04636f091a93bd 100644 --- a/pages/linux/mako.md +++ b/pages/linux/mako.md @@ -10,7 +10,7 @@ - Start with a custom configuration file: -`mako --config {{path/to/config}}` +`mako {{[-c|--config]}} {{path/to/config}}` - Set maximum number of visible notifications: From 61ccc1953eeb6a884b9dc55a3706d90e656c622b Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Sat, 1 Nov 2025 18:47:43 +0100 Subject: [PATCH 05/28] Update pages/linux/mako.md Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/mako.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/mako.md b/pages/linux/mako.md index 04636f091a93bd..cb465827557240 100644 --- a/pages/linux/mako.md +++ b/pages/linux/mako.md @@ -26,7 +26,7 @@ - Display help: -`mako --help` +`mako {{[-h|--help]}}` - View documentation for controlling mako: From 968aec6be71202edee3a8c3d18d310d6d59f68f9 Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Sat, 1 Nov 2025 18:49:29 +0100 Subject: [PATCH 06/28] Update pages/linux/mako.md Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/mako.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/mako.md b/pages/linux/mako.md index cb465827557240..566f948b65def0 100644 --- a/pages/linux/mako.md +++ b/pages/linux/mako.md @@ -2,7 +2,7 @@ > Notification daemon for Wayland compositors. > Can be controlled with `makoctl`. -> More information: . +> More information: . - Start the mako notification daemon: From f05fed48ce05043e2140970c9442a737216ce757 Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Sat, 1 Nov 2025 18:52:48 +0100 Subject: [PATCH 07/28] Update pages/linux/mako.md Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/mako.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pages/linux/mako.md b/pages/linux/mako.md index 566f948b65def0..483959aca30cdb 100644 --- a/pages/linux/mako.md +++ b/pages/linux/mako.md @@ -27,7 +27,3 @@ - Display help: `mako {{[-h|--help]}}` - -- View documentation for controlling mako: - -`tldr makoctl` From 860949f7306fe4ca349848ed080734fb4fb1258e Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Sat, 1 Nov 2025 18:52:56 +0100 Subject: [PATCH 08/28] Update pages/linux/makoctl-mode.md Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/makoctl-mode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/makoctl-mode.md b/pages/linux/makoctl-mode.md index 1b60e3151614ee..bd2b6c55c1243f 100644 --- a/pages/linux/makoctl-mode.md +++ b/pages/linux/makoctl-mode.md @@ -22,4 +22,4 @@ - Set specific modes, replacing all current modes: -`makoctl mode -s {{mode1}} {{mode2}}` +`makoctl mode -s {{mode1 mode2 ...}}` From 6329c7247dc35dd7092562a0d003b030d33bb9e8 Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Sat, 1 Nov 2025 18:53:02 +0100 Subject: [PATCH 09/28] Update pages/linux/makoctl-mode.md Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/makoctl-mode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/makoctl-mode.md b/pages/linux/makoctl-mode.md index bd2b6c55c1243f..751d5c3a221217 100644 --- a/pages/linux/makoctl-mode.md +++ b/pages/linux/makoctl-mode.md @@ -12,7 +12,7 @@ `makoctl mode -a {{do-not-disturb}}` -- Remove one or more modes: +- Remove a mode: `makoctl mode -r {{do-not-disturb}}` From fc1de57edc96f844d6bedaff68afc86d6e82ab69 Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Sat, 1 Nov 2025 18:53:15 +0100 Subject: [PATCH 10/28] Update pages/linux/makoctl-dismiss.md Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/makoctl-dismiss.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/makoctl-dismiss.md b/pages/linux/makoctl-dismiss.md index b9394c005a06ad..d291d86274bea5 100644 --- a/pages/linux/makoctl-dismiss.md +++ b/pages/linux/makoctl-dismiss.md @@ -1,7 +1,7 @@ # makoctl dismiss > Dismiss notifications in mako. -> More information: . +> More information: . - Dismiss the most recent notification: From 26c91491fbb4829701895ab86c6f298e18fcb948 Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Sat, 1 Nov 2025 18:53:35 +0100 Subject: [PATCH 11/28] Update pages/linux/makoctl.md Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/makoctl.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pages/linux/makoctl.md b/pages/linux/makoctl.md index 3a63d14e85847e..02ad305a85532e 100644 --- a/pages/linux/makoctl.md +++ b/pages/linux/makoctl.md @@ -1,7 +1,8 @@ # makoctl > Control the mako daemon. -> Sends IPC commands to the running mako daemon. Some subcommands such as `dismiss`, `invoke`, and `mode` have their own usage documentation. +> Sends IPC commands to the running mako daemon. +> Some subcommands such as `dismiss`, `invoke`, and `mode` have their own usage documentation. > More information: . - List all current notifications: From 93fda68fd3cf99aa80e219d5befab2c9054ecb79 Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Sat, 1 Nov 2025 18:53:52 +0100 Subject: [PATCH 12/28] Update pages/linux/makoctl.md Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/makoctl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/makoctl.md b/pages/linux/makoctl.md index 02ad305a85532e..ffd55913f12079 100644 --- a/pages/linux/makoctl.md +++ b/pages/linux/makoctl.md @@ -3,7 +3,7 @@ > Control the mako daemon. > Sends IPC commands to the running mako daemon. > Some subcommands such as `dismiss`, `invoke`, and `mode` have their own usage documentation. -> More information: . +> More information: . - List all current notifications: From 3d5e2443fd97cdcd9d1d6d32e48e31c16890bae7 Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Sat, 1 Nov 2025 18:55:44 +0100 Subject: [PATCH 13/28] Update pages/linux/makoctl.md Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/makoctl.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/pages/linux/makoctl.md b/pages/linux/makoctl.md index ffd55913f12079..f8fc834885e6c3 100644 --- a/pages/linux/makoctl.md +++ b/pages/linux/makoctl.md @@ -24,15 +24,3 @@ - Display help and all available subcommands: `makoctl help` - -- View documentation for dismissing notifications: - -`tldr makoctl-dismiss` - -- View documentation for invoking notification actions: - -`tldr makoctl-invoke` - -- View documentation for managing modes: - -`tldr makoctl-mode` From 927b047334cffc2f21b3d0a05f6ee04e306df477 Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Sun, 2 Nov 2025 17:50:24 +0100 Subject: [PATCH 14/28] Update pages/linux/makoctl-mode.md Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/makoctl-mode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/makoctl-mode.md b/pages/linux/makoctl-mode.md index 751d5c3a221217..e20d70a3cbc88c 100644 --- a/pages/linux/makoctl-mode.md +++ b/pages/linux/makoctl-mode.md @@ -2,7 +2,7 @@ > Manage notification modes in mako. > Modes can be used to change notification behavior (e.g., do-not-disturb). -> More information: . +> More information: . - List all currently active modes: From 9a1db3dd652bec7c2c91e0a1f0453df48ce785a6 Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Sun, 2 Nov 2025 17:50:37 +0100 Subject: [PATCH 15/28] Update pages/linux/makoctl-dismiss.md Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/makoctl-dismiss.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/makoctl-dismiss.md b/pages/linux/makoctl-dismiss.md index d291d86274bea5..44ce4806a59e5b 100644 --- a/pages/linux/makoctl-dismiss.md +++ b/pages/linux/makoctl-dismiss.md @@ -13,7 +13,7 @@ - Dismiss all notifications: -`makoctl dismiss --all` +`makoctl dismiss {{[-a|--all]}}` - Dismiss all notifications in the same group: From ce43f57c2966cc7027b2de62513bd57b5231db6a Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Sun, 2 Nov 2025 17:50:47 +0100 Subject: [PATCH 16/28] Update pages/linux/makoctl-dismiss.md Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/makoctl-dismiss.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/makoctl-dismiss.md b/pages/linux/makoctl-dismiss.md index 44ce4806a59e5b..f25883be86b7f6 100644 --- a/pages/linux/makoctl-dismiss.md +++ b/pages/linux/makoctl-dismiss.md @@ -17,7 +17,7 @@ - Dismiss all notifications in the same group: -`makoctl dismiss --group` +`makoctl dismiss {{[-g|--group]}}` - Dismiss without adding to history: From bf275692a76d01400f92e66bc87f311f4f290cc4 Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Sun, 2 Nov 2025 17:50:56 +0100 Subject: [PATCH 17/28] Update pages/linux/makoctl-dismiss.md Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/makoctl-dismiss.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/makoctl-dismiss.md b/pages/linux/makoctl-dismiss.md index f25883be86b7f6..0f776a497287cc 100644 --- a/pages/linux/makoctl-dismiss.md +++ b/pages/linux/makoctl-dismiss.md @@ -21,4 +21,4 @@ - Dismiss without adding to history: -`makoctl dismiss --no-history` +`makoctl dismiss {{[-h|--no-history]}}` From 565d7cdd940a74519ce34f9a9c27b1c3e84c184a Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Sun, 2 Nov 2025 17:51:05 +0100 Subject: [PATCH 18/28] Update pages/linux/makoctl-invoke.md Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/makoctl-invoke.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/makoctl-invoke.md b/pages/linux/makoctl-invoke.md index 0c7eb7756c0f25..76eb83c29b23d2 100644 --- a/pages/linux/makoctl-invoke.md +++ b/pages/linux/makoctl-invoke.md @@ -1,7 +1,7 @@ # makoctl invoke > Invoke actions on notifications in mako. -> More information: . +> More information: . - Invoke the default action on the most recent notification: From e4d2add6c6fceae89b6ee6a2cced13268c20219d Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Sun, 2 Nov 2025 18:03:33 +0100 Subject: [PATCH 19/28] Update pages/linux/makoctl-mode.md Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/makoctl-mode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/makoctl-mode.md b/pages/linux/makoctl-mode.md index e20d70a3cbc88c..792bf85e70f8bf 100644 --- a/pages/linux/makoctl-mode.md +++ b/pages/linux/makoctl-mode.md @@ -8,7 +8,7 @@ `makoctl mode` -- Add one or more modes: +- Add a mode: `makoctl mode -a {{do-not-disturb}}` From f201022b88e93653ad8ef69ec085265721d6b49e Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Mon, 3 Nov 2025 08:47:31 +0100 Subject: [PATCH 20/28] Update pages/linux/mako.md Co-authored-by: Lena Pastwa <126529524+acuteenvy@users.noreply.github.com> --- pages/linux/mako.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/mako.md b/pages/linux/mako.md index 483959aca30cdb..3a83c192a18133 100644 --- a/pages/linux/mako.md +++ b/pages/linux/mako.md @@ -4,7 +4,7 @@ > Can be controlled with `makoctl`. > More information: . -- Start the mako notification daemon: +- Start the `mako` notification daemon: `mako` From df1b6ec80e79c0ac625fd60da23fcec2338eb1f6 Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Mon, 3 Nov 2025 08:47:45 +0100 Subject: [PATCH 21/28] Update pages/linux/makoctl-dismiss.md Co-authored-by: Lena Pastwa <126529524+acuteenvy@users.noreply.github.com> --- pages/linux/makoctl-dismiss.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/makoctl-dismiss.md b/pages/linux/makoctl-dismiss.md index 0f776a497287cc..fee410baccc423 100644 --- a/pages/linux/makoctl-dismiss.md +++ b/pages/linux/makoctl-dismiss.md @@ -15,7 +15,7 @@ `makoctl dismiss {{[-a|--all]}}` -- Dismiss all notifications in the same group: +- Dismiss all notifications in the first group: `makoctl dismiss {{[-g|--group]}}` From e31001dfa2b990f8301bc954f49b67dd0414e122 Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Mon, 3 Nov 2025 08:47:55 +0100 Subject: [PATCH 22/28] Update pages/linux/makoctl-dismiss.md Co-authored-by: Lena Pastwa <126529524+acuteenvy@users.noreply.github.com> --- pages/linux/makoctl-dismiss.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/makoctl-dismiss.md b/pages/linux/makoctl-dismiss.md index fee410baccc423..5a4e4d71ce7a1d 100644 --- a/pages/linux/makoctl-dismiss.md +++ b/pages/linux/makoctl-dismiss.md @@ -1,6 +1,6 @@ # makoctl dismiss -> Dismiss notifications in mako. +> Dismiss notifications in `mako`. > More information: . - Dismiss the most recent notification: From 58529ac99bd82c6e26b9ba54de78769299696dbf Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Mon, 3 Nov 2025 08:48:05 +0100 Subject: [PATCH 23/28] Update pages/linux/makoctl-invoke.md Co-authored-by: Lena Pastwa <126529524+acuteenvy@users.noreply.github.com> --- pages/linux/makoctl-invoke.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/makoctl-invoke.md b/pages/linux/makoctl-invoke.md index 76eb83c29b23d2..a7d9ffed8a4666 100644 --- a/pages/linux/makoctl-invoke.md +++ b/pages/linux/makoctl-invoke.md @@ -1,6 +1,6 @@ # makoctl invoke -> Invoke actions on notifications in mako. +> Invoke actions on notifications in `mako`. > More information: . - Invoke the default action on the most recent notification: From 4edf51a1bef792fbce0112bc7b72e1e7c1364d5d Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Mon, 3 Nov 2025 08:48:24 +0100 Subject: [PATCH 24/28] Update pages/linux/makoctl.md Co-authored-by: Lena Pastwa <126529524+acuteenvy@users.noreply.github.com> --- pages/linux/makoctl.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pages/linux/makoctl.md b/pages/linux/makoctl.md index f8fc834885e6c3..5d4d6456c4712d 100644 --- a/pages/linux/makoctl.md +++ b/pages/linux/makoctl.md @@ -1,7 +1,6 @@ # makoctl -> Control the mako daemon. -> Sends IPC commands to the running mako daemon. +> Control the `mako` notification daemon. > Some subcommands such as `dismiss`, `invoke`, and `mode` have their own usage documentation. > More information: . From cc44079d262aa4135408e1c32441f79463e59a68 Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Mon, 3 Nov 2025 08:48:33 +0100 Subject: [PATCH 25/28] Update pages/linux/makoctl.md Co-authored-by: Lena Pastwa <126529524+acuteenvy@users.noreply.github.com> --- pages/linux/makoctl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/makoctl.md b/pages/linux/makoctl.md index 5d4d6456c4712d..2ddc8ebfd59dcb 100644 --- a/pages/linux/makoctl.md +++ b/pages/linux/makoctl.md @@ -12,7 +12,7 @@ `makoctl history` -- Reload the mako configuration file: +- Reload the configuration file: `makoctl reload` From 36075c1387a9ad0497135a342d0053dc8a54f8d1 Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Mon, 3 Nov 2025 08:48:42 +0100 Subject: [PATCH 26/28] Update pages/linux/makoctl.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> --- pages/linux/makoctl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/makoctl.md b/pages/linux/makoctl.md index 2ddc8ebfd59dcb..4f5c80ed5d7f44 100644 --- a/pages/linux/makoctl.md +++ b/pages/linux/makoctl.md @@ -20,6 +20,6 @@ `makoctl restore` -- Display help and all available subcommands: +- Display help: `makoctl help` From 18f4bfc87146abff145c3bb445831fa209ea4221 Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Tue, 4 Nov 2025 14:22:23 +0100 Subject: [PATCH 27/28] Update pages/linux/mako.md Co-authored-by: Lena Pastwa <126529524+acuteenvy@users.noreply.github.com> --- pages/linux/mako.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/mako.md b/pages/linux/mako.md index 3a83c192a18133..8a96dae4446879 100644 --- a/pages/linux/mako.md +++ b/pages/linux/mako.md @@ -22,7 +22,7 @@ - Group notifications by application name: -`mako --group-by {{app-name}}` +`mako --group-by {{app_name}}` - Display help: From 46b3aef3f33fcc4b8ae93c6b2fb2698f509cb9fa Mon Sep 17 00:00:00 2001 From: Krystian <77192288+Seito1090@users.noreply.github.com> Date: Tue, 4 Nov 2025 14:22:31 +0100 Subject: [PATCH 28/28] Update pages/linux/makoctl-mode.md Co-authored-by: Lena Pastwa <126529524+acuteenvy@users.noreply.github.com> --- pages/linux/makoctl-mode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/makoctl-mode.md b/pages/linux/makoctl-mode.md index 792bf85e70f8bf..c84a981011f20f 100644 --- a/pages/linux/makoctl-mode.md +++ b/pages/linux/makoctl-mode.md @@ -1,6 +1,6 @@ # makoctl mode -> Manage notification modes in mako. +> Manage notification modes in `mako`. > Modes can be used to change notification behavior (e.g., do-not-disturb). > More information: .