AudioNote Shell script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
DIR=`xdg-user-dir MUSIC` | |
if [ -z $DIR ] | |
then | |
DIR=~/AudioNotes | |
else | |
DIR="$DIR/AudioNotes" | |
fi | |
NOW=`date +%F_%T` | |
if pgrep arecord | |
then | |
pkill arecord | |
notify-send -i media-record Аудиозаметка 'Запись завершена' | |
sleep 2 && pkill notify-osd & | |
exit | |
fi | |
[ ! -d "$DIR" ] && mkdir -p "$DIR" | |
amixer -c 0 set 'Mic Boost',0 3 | |
arecord -f dat -d 600 -D hw:0,0 | lame --preset voice - "$DIR/$NOW.mp3" & | |
notify-send -i media-record Аудиозаметка $NOW | |
sleep 2 && pkill notify-osd & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment