Fixed some of my scripts

This commit is contained in:
Emmet 2023-05-29 18:32:11 -05:00
parent 70e4737360
commit e35706587b

View file

@ -1,14 +1,17 @@
{ config, lib, pkgs, ... }:
let
myYtpScript = ''
ytsub --video-player /usr/bin/mpv
#!/bin/sh
ytsub --video-player mpv
'';
myYtaScript = ''
#!/bin/sh
yt-dlp -x --audio-format mp3 $1
'';
myYtdScript = ''
#!/bin/sh
pushd ~/Media/Podcasts;
ytsub --video-player yta;
ytsub --video-player ~/.nix-profile/bin/yta;
popd;
'';
in