mirror of
https://github.com/librephoenix/nixos-config
synced 2025-04-19 08:44:36 +05:30
Fixed some of my scripts
This commit is contained in:
parent
70e4737360
commit
e35706587b
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue