dmenu recording, mounting and umounted added

This commit is contained in:
Luke Smith
2018-04-10 17:43:40 -07:00
parent e75e7b680f
commit 2dc5e82233
4 changed files with 57 additions and 23 deletions

8
.scripts/record Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
# A dmenu recording prompt for my different
case $(echo -e "Screencast\nVideo only\nAudio only" | dmenu -i -p "Select recording style:") in
Screencast) (pgrep -x pulse audio && screencast_pulse.sh) || screencast_alsa.sh ;;
"Audio only") (pgrep -x pulse audio && audio_pulse.sh) || audio_alsa.sh ;;
"Video only") video.sh ;;
esac