9 lines
345 B
Text
9 lines
345 B
Text
|
#!/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
|