diff options
author | Louie S <louie@example.com> | 2023-12-31 19:44:44 -0500 |
---|---|---|
committer | Louie S <louie@example.com> | 2023-12-31 19:44:44 -0500 |
commit | f080b2e4eec397a8daa03b0cbc4308311a93c133 (patch) | |
tree | 030e151f132420b6875e5b6deda76cf4db2092c9 /config |
First commit
Diffstat (limited to 'config')
-rw-r--r-- | config/.gitignore | 4 | ||||
-rw-r--r-- | config/romlist.template | 1 | ||||
-rw-r--r-- | config/systems/.example | 6 | ||||
-rw-r--r-- | config/systems/.gitignore | 3 |
4 files changed, 14 insertions, 0 deletions
diff --git a/config/.gitignore b/config/.gitignore new file mode 100644 index 0000000..c2b1351 --- /dev/null +++ b/config/.gitignore @@ -0,0 +1,4 @@ +* +!.gitignore +!romlist.template +!systems diff --git a/config/romlist.template b/config/romlist.template new file mode 100644 index 0000000..14737c4 --- /dev/null +++ b/config/romlist.template @@ -0,0 +1 @@ +# "NAME" "PATH" "SYSTEM NAME" diff --git a/config/systems/.example b/config/systems/.example new file mode 100644 index 0000000..f1381e7 --- /dev/null +++ b/config/systems/.example @@ -0,0 +1,6 @@ +# This is an example system script +# It is a shell script which should define a launcher and optionally any flags +# Example for an nes system config: + +launcher="/usr/bin/nes" +flags="--fullscreen" diff --git a/config/systems/.gitignore b/config/systems/.gitignore new file mode 100644 index 0000000..19a8c43 --- /dev/null +++ b/config/systems/.gitignore @@ -0,0 +1,3 @@ +* +!.example +!.gitignore |