Skip to content

Commit

Permalink
Merge pull request #270 from UnRedKnown/master
Browse files Browse the repository at this point in the history
Add OSMods
  • Loading branch information
TinyCircuits authored Dec 13, 2024
2 parents 9e10edd + f0703fb commit de968ad
Show file tree
Hide file tree
Showing 4 changed files with 527 additions and 0 deletions.
13 changes: 13 additions & 0 deletions OSMods/OSMods.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from machine import reset
from os import rmdir, remove

source_path = "/Games/OSMods/menu.py"
destination_path = "/menu.py"

with open(source_path, 'r') as src, open(destination_path, 'w') as dest:
for line in src:
dest.write(line)
remove('/Games/OSMods/OSMods.py')
remove('/Games/OSMods/menu.py')
rmdir('/Games/OSMods')
reset()
4 changes: 4 additions & 0 deletions OSMods/arcade_description.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
An installer for a custom menu.py
Deletes self after installation

If you know of any glitches, or have an idea for a feature, send me a message on Discord - @unredknown
Binary file added OSMods/arcade_title_video.webm
Binary file not shown.
Loading

0 comments on commit de968ad

Please sign in to comment.