diff --git a/.gitignore b/.gitignore index 51f2bbb..0667445 100644 --- a/.gitignore +++ b/.gitignore @@ -40,5 +40,4 @@ luac.out *.x86_64 *.hex -# Testing directory for mpv-alpha -.test/ + diff --git a/src/config.lua b/src/config.lua deleted file mode 100644 index 0bf0bc1..0000000 --- a/src/config.lua +++ /dev/null @@ -1 +0,0 @@ --- stuff for the config files diff --git a/src/main.lua b/src/main.lua deleted file mode 100644 index 9cf9da2..0000000 --- a/src/main.lua +++ /dev/null @@ -1 +0,0 @@ -require"config" \ No newline at end of file diff --git a/src/props.lua b/src/props.lua deleted file mode 100644 index 2f07bb0..0000000 --- a/src/props.lua +++ /dev/null @@ -1,24 +0,0 @@ --- constants, defaults, and other shit -constants = { - defaults = { - dirs = { - mpv = { - linux = { - "~/.config/mpv/", - "~/.mpv/" - } - } - } - } -} - -default_conf = { - configjson = [[ - { - "history": { - "save_history": true - } - } - ]] -} - diff --git a/test.sh b/test.sh deleted file mode 100644 index 2be4245..0000000 --- a/test.sh +++ /dev/null @@ -1,11 +0,0 @@ -# please have yt-dlp -mkdir -p .test/ - -yt-dlp \ - --no-write-info-json \ - --output "./.test/video.mp4" \ - --remux-video "mp4" \ - -w \ - "https://www.youtube.com/watch?v=T6_81D9HQdU" - -mpv -v --load-scripts=no --script=./src/ ./.test/video.mp4 \ No newline at end of file