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