diff --git a/src/config.lua b/src/config.lua new file mode 100644 index 0000000..032648f --- /dev/null +++ b/src/config.lua @@ -0,0 +1 @@ +-- stuff for the config files \ No newline at end of file diff --git a/src/main.lua b/src/main.lua new file mode 100644 index 0000000..5de4c4e --- /dev/null +++ b/src/main.lua @@ -0,0 +1,3 @@ +function main(options) + print() +end \ No newline at end of file diff --git a/src/props.lua b/src/props.lua new file mode 100644 index 0000000..fa00a18 --- /dev/null +++ b/src/props.lua @@ -0,0 +1,19 @@ +-- constants, defaults, and other shit +constants = { + defaults = { + dirs = { + mpv = { + linux = { + "~/.config/mpv/", + "~/.mpv/" + } + } + } + } +} + +default_conf = { + configjson = [[ + + ]] +} \ No newline at end of file