Skip to content

Commit 5db4bb2

Browse files
arda-gulermergify[bot]orhun
authored
feat(preset): add "sparks" sound preset (#95)
* Implement sparks sound preset * Rename sound preset * chore: reduce down spark preset's volume by 50% * docs: mention spark in README.md --------- Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> Co-authored-by: Orhun ParmaksΔ±z <[email protected]>
1 parent 0b8b803 commit 5db4bb2

File tree

9 files changed

+19
-0
lines changed

9 files changed

+19
-0
lines changed

β€ŽREADME.md

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ There are also different presets available:
6767
| `musicbox` | plays random notes like a music box |
6868
| `ducktilo` | quack quack πŸ¦† |
6969
| `drumkit` | dum, tss, cha! πŸ₯ |
70+
| `spark` | high voltage high current typing experience ⚑ |
7071

7172
To list the presets:
7273

β€Žconfig/daktilo.toml

+18
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,24 @@ key_config = [
9090
], strategy = "sequential" },
9191
]
9292

93+
# Sparks
94+
# For a high voltage high current typing experience
95+
[[sound_preset]]
96+
name = "sparks"
97+
key_config = [
98+
{ event = "press", keys = "Backspace", files = [
99+
{path = "derase.mp3"},
100+
], strategy = "random" },
101+
{ event = "press", keys = ".*", files = [
102+
{ path = "dspark1.mp3" },
103+
{ path = "dspark2.mp3" },
104+
{ path = "dspark3.mp3" },
105+
{ path = "dspark4.mp3" },
106+
{ path = "dspark5.mp3" },
107+
{ path = "dspark6.mp3" },
108+
], strategy = "random" },
109+
]
110+
93111
# Here is how you can define your custom preset:
94112
# [[sound_preset]]
95113
# # Custom sound preset named "custom"

β€Žsounds/derase.mp3

3.94 KB
Binary file not shown.

β€Žsounds/dspark1.mp3

23.9 KB
Binary file not shown.

β€Žsounds/dspark2.mp3

16.6 KB
Binary file not shown.

β€Žsounds/dspark3.mp3

16.6 KB
Binary file not shown.

β€Žsounds/dspark4.mp3

16.6 KB
Binary file not shown.

β€Žsounds/dspark5.mp3

16.6 KB
Binary file not shown.

β€Žsounds/dspark6.mp3

16.6 KB
Binary file not shown.

0 commit comments

Comments
Β (0)