Add notifications with ntfy

This commit is contained in:
Simon Fondrie-Teitler
2025-06-26 18:01:29 -04:00
parent 2b86691e57
commit 2c05f3d94e
10 changed files with 434 additions and 102 deletions

View File

@@ -94,6 +94,17 @@
</select>
</div>
<div>
<label for="ntfy_topic" class="block text-sm font-medium text-gray-700 mb-1">
ntfy Topic
</label>
<input
id="ntfy_topic"
bind:value={config.ntfy_topic}
class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-rayhunter-blue"
>
</div>
<div class="space-y-3">
<div class="flex items-center">
<input

View File

@@ -12,6 +12,7 @@ export interface Config {
ui_level: number;
colorblind_mode: boolean;
key_input_mode: number;
ntfy_topic: string;
analyzers: AnalyzerConfig;
}