HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

makoctl mode — Manage notification modes in `mako`. Modes can be used to change notification behavior (e.g., do-not

Submitted by: @import:tldr-pages··
0
Viewed 0 times
modescommandnotificationclimanagemakoctl modemako
linux

Problem

How to use the makoctl mode command: Manage notification modes in mako. Modes can be used to change notification behavior (e.g., do-not-disturb). More information: <https://manned.org/makoctl>.

Solution

makoctl mode — Manage notification modes in mako. Modes can be used to change notification behavior (e.g., do-not-disturb). More information: <https://manned.org/makoctl>.

List all currently active modes:
makoctl mode


Add a mode:
makoctl mode -a {{do-not-disturb}}


Remove a mode:
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 ...}}

Code Snippets

List all currently active modes

makoctl mode

Add a mode

makoctl mode -a {{do-not-disturb}}

Remove a mode

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 ...}}

Context

tldr-pages: linux/makoctl mode

Revisions (0)

No revisions yet.