From 1761a3d152e610a4a1e018fcd5b23ed61af406ba Mon Sep 17 00:00:00 2001 From: Geoffrey Frogeye Date: Sun, 8 May 2016 08:36:14 +0200 Subject: [PATCH] Beep cron-able --- bashrc | 3 --- scripts/beep.sh | 2 ++ scripts/index.sh | 1 + 3 files changed, 3 insertions(+), 3 deletions(-) create mode 100755 scripts/beep.sh diff --git a/bashrc b/bashrc index aff08e5..fb193ed 100644 --- a/bashrc +++ b/bashrc @@ -124,6 +124,3 @@ function dafont { alias nw="sudo systemctl restart NetworkManager" -function beep { - play -n synth sine E5 sine A4 remix 1-2 fade 0.5 1.2 0.5 2> /dev/null -} diff --git a/scripts/beep.sh b/scripts/beep.sh new file mode 100755 index 0000000..b25144e --- /dev/null +++ b/scripts/beep.sh @@ -0,0 +1,2 @@ +#!/usr/bin/sh +play -n synth sine E5 sine A4 remix 1-2 fade 0.5 1.2 0.5 2> /dev/null diff --git a/scripts/index.sh b/scripts/index.sh index 482aefe..3d7f7e8 100644 --- a/scripts/index.sh +++ b/scripts/index.sh @@ -1,2 +1,3 @@ source ~/.scripts/proxy.sh source ~/.scripts/locinst.sh +alias beep=~/.scripts/beep.sh