summaryrefslogtreecommitdiffstats
path: root/.scripts
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-04-10 19:14:20 -0700
committerLuke Smith <luke@lukesmith.xyz>2018-04-10 19:14:20 -0700
commit484a6fbd27f1b719ae7e668bc8cfc19c10840c52 (patch)
tree4d59ff88a17c109b8d2b8f23fab6889b629aacc2 /.scripts
parent87735598d5ddccbf06c937d0099ebae1c8f369b6 (diff)
downloadeibhear-484a6fbd27f1b719ae7e668bc8cfc19c10840c52.tar.gz
eibhear-484a6fbd27f1b719ae7e668bc8cfc19c10840c52.tar.zst
eibhear-484a6fbd27f1b719ae7e668bc8cfc19c10840c52.zip
record script fix for pulseaudio
Diffstat (limited to '.scripts')
-rwxr-xr-x.scripts/record4
1 files changed, 2 insertions, 2 deletions
diff --git a/.scripts/record b/.scripts/record
index 2c941b9..df1926f 100755
--- a/.scripts/record
+++ b/.scripts/record
@@ -2,7 +2,7 @@
# 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 ;;
+ 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