fix flower boxes

This commit is contained in:
Greg Gauthier 2025-01-22 19:53:19 +00:00
parent 38266ee8a2
commit aa568aa5c8
2 changed files with 14 additions and 1 deletions

View File

@ -3,6 +3,11 @@
### ###
# This will mount an existing floppy disk image on a loop device # This will mount an existing floppy disk image on a loop device
# Or, it will create a disk image, and then mount it on a loop device # Or, it will create a disk image, and then mount it on a loop device
#
# If you don't supply a filename, then the script will create a blank default.
#
# Make sure to set your MEDIADIR as desired.
#
### ###
MEDIADIR="/media/gmgauthier" MEDIADIR="/media/gmgauthier"

View File

@ -1,7 +1,15 @@
#!/usr/bin/env bash #!/usr/bin/env bash
### ###
# This will create a new 1.44mb floppy disk image # This will create a new 1.44mb floppy disk image by default
# But you can create a disk of any size.
#
# The first argument should be the filename
# If you supply a filename, then you have to supply a disk size
# valid sizes are 360, 720, 1440.
#
# Make sure to set DISKDIR to your chosen location for blanks
#
### ###
DISKDIR="/home/gmgauthier/Retro/BLANKS" DISKDIR="/home/gmgauthier/Retro/BLANKS"