diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2019-01-01 17:15:40 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-01 17:15:40 -0500 |
| commit | 99e1ed06cc8c7548d5ae330edc42ac9fad829c72 (patch) | |
| tree | 721dd3191c06f74c28f9fe37bb0c5cb84960384b /.scripts/i3cmds | |
| parent | a410a27f2a6b5f57bbb6655cb6b754f9cd342e51 (diff) | |
| parent | 63b83a692538478d190afbdf14b59e007a378cc3 (diff) | |
| download | eibhear-99e1ed06cc8c7548d5ae330edc42ac9fad829c72.tar.gz eibhear-99e1ed06cc8c7548d5ae330edc42ac9fad829c72.tar.zst eibhear-99e1ed06cc8c7548d5ae330edc42ac9fad829c72.zip | |
Merge pull request #168 from LaisRast/patch-1
Typos in `dmenurecord`
Diffstat (limited to '.scripts/i3cmds')
| -rwxr-xr-x | .scripts/i3cmds/dmenurecord | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.scripts/i3cmds/dmenurecord b/.scripts/i3cmds/dmenurecord index d5ed889..7f0ea72 100755 --- a/.scripts/i3cmds/dmenurecord +++ b/.scripts/i3cmds/dmenurecord @@ -52,7 +52,7 @@ video() { ffmpeg \ } webcamhidef() { ffmpeg \ - -f v412 \ + -f v4l2 \ -i /dev/video0 \ -video_size 1920x1080 \ "$HOME/webcam-$(date '+%y%m%d-%H%M-%S').mkv" & @@ -61,7 +61,7 @@ webcamhidef() { ffmpeg \ } webcam() { ffmpeg \ - -f v412 \ + -f v4l2 \ -i /dev/video0 \ -video_size 640x480 \ "$HOME/webcam-$(date '+%y%m%d-%H%M-%S').mkv" & @@ -85,8 +85,8 @@ askrecording() { \ screencast) screencast;; audio) audio;; video) video;; - webcam) webcamrecord;; - "webcam (hi-def)") webcamrecord;; + webcam) webcam;; + "webcam (hi-def)") webcamhidef;; esac } |
