"first" commit, preparing for LARBS 2.0

This commit is contained in:
Luke
2018-01-21 18:29:48 -07:00
parent 68bd2acdc8
commit 50adee4e79
76 changed files with 9372 additions and 2 deletions

18
.config/Scripts/audio_pulse.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
#This is the ffmpeg command that the audio shortcut in i3 will run.
#Picks a file name for the output file based on availability:
while [[ -f $HOME/audio$n.flac ]]
do
n=$((n+1))
done
filename="$HOME/audio$n.flac"
#The actual ffmpeg command:
ffmpeg \
-f alsa -i default \
-c:a flac \
$filename