Gen 423: Converted shell scripts into nix files
This commit is contained in:
13
glasshouse-laptop/home/scripts/lofi.nix
Normal file
13
glasshouse-laptop/home/scripts/lofi.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{ pkgs }:
|
||||
|
||||
{
|
||||
lofi = pkgs.writeShellScriptBin "lofi" (''
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if (ps aux | grep mpv | grep -v grep > /dev/null) then
|
||||
pkill mpv
|
||||
else
|
||||
runbg mpv --no-video https://www.youtube.com/live/jfKfPfyJRdk?si=OF0HKrYFFj33BzMo
|
||||
fi
|
||||
'');
|
||||
}
|
||||
Reference in New Issue
Block a user