Grande Sonnerie

The goal of this app is to provide hour and minute repeater on your PC in the same way that is found in such watches as Casio (everyone knows their hourly beep-beep), Vacheron Constantin and Patek Phillippe.

Installation

console $ cargo install grande-sonnerie

Usage

Configuration

Upon first launch two default config files will be created in ~/.config/grande-sonnerie: config.toml and casio.toml, as well as a directory with default coucou movement.

config.toml

casio.toml

Examples

Defaults

config.toml:

toml offset = [0, 0, 0] sonnerie = 'coucou' movement = 'casio'

casio.toml:

toml grand: none hours: none hours_div: 1 minutes: none minutes_div: none twelve_hour: false multichime: false

UTC timezone, chimes once every hour with coucou/hour.wav.

My personal config

config.toml:

toml offset = [3, 0, 0] sonnerie = 'coucou' movement = 'pp'

pp.toml:

toml grand = [10, 18] hours_div = 1 minutes_div = 15 twelve_hour = true multichime = true

UTC+3, chimes: * coucou/grand.wav on 10:00 and 18:00 before everything else * coucou/hour.wav every hour, repeats according to the hours in 12h format * coucou/minute.wav every 15 minutes of an hour, repeats according to quarters of hour

So at 18:00 it will chime Grand, then Hour six times. At 18:45 it will just chime Minutes three times (45 is 3/4 of an hour).

Sounds

Three sounds are expected: grand, hour, and minute. Currently only .wav is supported:

console $ ffmpeg -i yoda-death-sound-effect.mp3 grand.wav

To do