From 259b86f4e3b868937fa2187c11748fadd5c9eef0 Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Fri, 7 Jun 2019 17:40:21 -0400 Subject: [PATCH] Add beep sound generation scripts for use in dunst --- home/bin/dunst_beep_critical | 7 +++++++ home/bin/dunst_beep_normal | 3 +++ 2 files changed, 10 insertions(+) create mode 100755 home/bin/dunst_beep_critical create mode 100755 home/bin/dunst_beep_normal diff --git a/home/bin/dunst_beep_critical b/home/bin/dunst_beep_critical new file mode 100755 index 0000000..d169409 --- /dev/null +++ b/home/bin/dunst_beep_critical @@ -0,0 +1,7 @@ +#! /bin/sh + +#play -q -n synth 0.5 sin 750 +for i in $(seq 3) +do + play -q -n synth 0.1 sin 115 +done diff --git a/home/bin/dunst_beep_normal b/home/bin/dunst_beep_normal new file mode 100755 index 0000000..3b6ac8c --- /dev/null +++ b/home/bin/dunst_beep_normal @@ -0,0 +1,3 @@ +#! /bin/sh + +play -q -n synth 0.1 sin 115 -- 2.20.1