-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexample-config.toml
More file actions
35 lines (26 loc) · 951 Bytes
/
Copy pathexample-config.toml
File metadata and controls
35 lines (26 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright (C) 2026 Maciej Delmanowski <drybjed@gmail.com>
# SPDX-License-Identifier: GPL-3.0-or-later
# Example chimed configuration — place in ~/.config/chimed/conf.d/
# to override defaults. TOML, YAML, and JSON are all supported.
# === Bell definitions ===
#
# Each bell has a name and a resource (WAV file from the bundled package).
# You can also add custom bells using the 'filename' key (not shown here).
# Configuration files in conf.d/ are merged with the defaults; you only
# need to specify the values you want to override.
[bells.chime2]
resource = "ueffects-l-key.wav"
min_interval = 0.04
[bells.custom-bell]
resource = "richcraft-chime-4.wav"
min_interval = 0.1
# === Input-to-bell mappings ===
#
# Each input matches a string written to the FIFO and maps it to a bell.
# Multiple inputs can map to the same bell.
[[inputs]]
string = "CustomEvent"
output = "custom-bell"
[[inputs]]
string = "BufWritePre"
output = "chime4"