summaryrefslogtreecommitdiffstats
path: root/.scripts/record
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-04-10 23:08:43 -0700
committerLuke Smith <luke@lukesmith.xyz>2018-04-10 23:08:43 -0700
commitf61ab667856a6896a0395a84c85cc4c1f139c630 (patch)
tree2d9c9c6353d837e53695cb3d664d4926a25ad33c /.scripts/record
parente2225d418d38e53f63bb1c279cc8b9af45ea6e3a (diff)
downloadeibhear-f61ab667856a6896a0395a84c85cc4c1f139c630.tar.gz
eibhear-f61ab667856a6896a0395a84c85cc4c1f139c630.tar.zst
eibhear-f61ab667856a6896a0395a84c85cc4c1f139c630.zip
Overhaul of screencasting scripts
Diffstat (limited to '.scripts/record')
-rwxr-xr-x.scripts/record8
1 files changed, 0 insertions, 8 deletions
diff --git a/.scripts/record b/.scripts/record
deleted file mode 100755
index df1926f..0000000
--- a/.scripts/record
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/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