summaryrefslogtreecommitdiffstats
path: root/.scripts/record
blob: df1926fa8c419656a99c20c0b24d4f086108b0f4 (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 pulseaudio && screencast_pulse.sh) || screencast_alsa.sh ;;
	"Audio only") (pgrep -x pulseaudio && audio_pulse.sh) || audio_alsa.sh ;;
	"Video only") video.sh ;;
esac