Files
attention-required/rules.example.json
T
alan 401b46c886 Attention Required: notification rules with effects for Omarchy
Rules watch every notification for words and apps and answer with an
effect: nudge, flash, banner, airplane, confetti, blink, sound, focus,
or a command. Silenced notifications that match a rule are let through.
Settings popup behind a bar bell, rules kept in one JSON file.
2026-09-08 16:55:43 +01:00

19 lines
419 B
JSON

{
"version": 1,
"whileDnd": true,
"defaults": {
"nudge": { "duration": 1, "intensity": 1.5, "speed": 200 },
"flash": { "duration": 1, "intensity": 0.9, "speed": 3, "thickness": 64, "color": "accent" },
"sound": { "intensity": 1, "speed": 1 }
},
"rules": [
{
"name": "deliveroo",
"words": ["deliveroo"],
"apps": [],
"effects": ["nudge"],
"cooldown": 5
}
]
}