Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
330c1bb2bc | ||
|
8507960c54 |
24
sound.pl
24
sound.pl
@ -253,29 +253,29 @@ $window->{refnum} != $dest->{window}->{refnum})) {
|
||||
Irssi::settings_add_bool("lookandfeel", "sounds", 1);
|
||||
Irssi::settings_add_int("lookandfeel", "sound_flood", 250);
|
||||
Irssi::settings_add_str("misc", "join_sound_command",
|
||||
"play -qnV0 synth tri 1500 tri 1800 delay 0 .12 fade h 0 .2 remix - &. /dev/null&");
|
||||
"play -qnV0 synth tri 1500 tri 1800 delay 0 .12 fade h 0 .2 remix - norm -15 &> /dev/null&");
|
||||
Irssi::settings_add_str("misc", "part_sound_command",
|
||||
"play -qnV0 synth tri 1800 tri 1500 delay 0 .12 fade h 0 .2 remix - &> /dev/null&");
|
||||
"play -qnV0 synth tri 1800 tri 1500 delay 0 .12 fade h 0 .2 remix - norm -8 &> /dev/null&");
|
||||
Irssi::settings_add_str("misc", "quit_sound_command",
|
||||
"play -qnV0 synth pi fade h 0 1 1 pad 0 1 reverb overdrive riaa norm -7 &> /dev/null&");
|
||||
"play -qnV0 synth pi fade h 0 1 1 pad 0 1 reverb overdrive riaa norm -20 &> /dev/null&");
|
||||
Irssi::settings_add_str("misc", "pub_sound_command",
|
||||
"play -qnV0 synth 0.09 tri E3:B3 &> /dev/null&");
|
||||
"play -qnV0 synth 0.09 tri E3:B3 norm -15 &> /dev/null&");
|
||||
Irssi::settings_add_str("misc", "own_act_sound_command",
|
||||
"play -qnV0 synth 0.25 tri G5:E1 tri B5:D1 remix - norm -5 &> /dev/null&");
|
||||
"play -qnV0 synth 0.25 tri G5:E1 tri B5:D1 remix - norm -15 &> /dev/null&");
|
||||
Irssi::settings_add_str("misc", "own_privmsg_sound_command",
|
||||
"play -qnV0 synth pl G2 pl G3 pl B2 pl B3 pl D3 pl D4 pl G3 pl G4 pl D4 pl D4 pl G4 pl G4 delay 0 0.01 0.02 0.03 0.04 0.05 0.06 0.07 0.08 0.09 0.1 0.11 remix - phaser fade p 0 0.5 0.3 norm -3 &> /dev/null&");
|
||||
"play -qnV0 synth pl G2 pl G3 pl B2 pl B3 pl D3 pl D4 pl G3 pl G4 pl D4 pl D4 pl G4 pl G4 delay 0 0.01 0.02 0.03 0.04 0.05 0.06 0.07 0.08 0.09 0.1 0.11 remix - phaser fade p 0 0.5 0.3 norm -15 &> /dev/null&");
|
||||
Irssi::settings_add_str("misc", "action_sound_command",
|
||||
"play -qnV0 synth 0.25 tri E1:G5 tri D1:B5 remix - norm -5 &> /dev/null&");
|
||||
"play -qnV0 synth 0.25 tri E1:G5 tri D1:B5 remix - norm -15 &> /dev/null&");
|
||||
Irssi::settings_add_str("misc", "own_msg_sound_command",
|
||||
"play -qnV0 synth 0.09 tri B3:E3 &> /dev/null&");
|
||||
"play -qnV0 synth 0.09 tri B3:E3 norm -15 &> /dev/null&");
|
||||
Irssi::settings_add_str("misc", "own_notice_sound_command",
|
||||
"play -nqV0 synth pi fade h 0 1 1 norm -15 pad 0 1 reverb overdrive riaa speed 32 repeat 3 &> /dev/null&");
|
||||
"play -nqV0 synth pi fade h 0 1 1 norm -20 pad 0 1 reverb overdrive riaa speed 32 repeat 3 norm -15 &> /dev/null&");
|
||||
Irssi::settings_add_str("misc", "notice_sound_command",
|
||||
"play -nqV0 synth pi fade h 0 1 1 norm -15 pad 0 1 reverb overdrive riaa speed 32 reverse repeat 3 &> /dev/null&");
|
||||
"play -nqV0 synth pi fade h 0 1 1 norm -35 pad 0 1 reverb overdrive riaa speed 32 reverse repeat 3 &> /dev/null&");
|
||||
Irssi::settings_add_str("misc", "privmsg_sound_command",
|
||||
"play -qnV0 synth pl G4 pl G4 pl D4 pl D4 pl D4 pl D3 pl G4 pl G3 pl B3 pl B2 pl G3 pl G2 delay 0 0.01 0.02 0.03 0.04 0.05 0.06 0.07 0.08 0.09 0.1 0.11 remix - phaser fade p 0 0.5 0.3 norm -3 &> /dev/null&");
|
||||
"play -qnV0 synth pl G4 pl G4 pl D4 pl D4 pl D4 pl D3 pl G4 pl G3 pl B3 pl B2 pl G3 pl G2 delay 0 0.01 0.02 0.03 0.04 0.05 0.06 0.07 0.08 0.09 0.1 0.11 remix - phaser fade p 0 0.5 0.3 norm -8 &> /dev/null&");
|
||||
Irssi::settings_add_str("misc", "hilight_sound_command",
|
||||
"play -qnV0 synth 0.5 tri A3:D3 tri D3:A3 remix - &> /dev/null&");
|
||||
"play -qnV0 synth 0.5 tri A3:D3 tri D3:A3 remix - norm -15 &> /dev/null&");
|
||||
#add Signals
|
||||
Irssi::signal_add_last("message public", "pub_msg");
|
||||
Irssi::signal_add_last("message irc action", "action_msg");
|
||||
|
Loading…
Reference in New Issue
Block a user