summaryrefslogtreecommitdiffstats
path: root/.scripts/record
blob: 2c941b999da15060151793a30da1809ffb26d2b2 (plain) (blame)
1
2
3
4
5
6
7
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