From aa568aa5c88e5addd627712a639e170b36dc5933 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Wed, 22 Jan 2025 19:53:19 +0000 Subject: [PATCH] fix flower boxes --- util/floppy-attach | 5 +++++ util/floppy-make | 10 +++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/util/floppy-attach b/util/floppy-attach index 4ede53a..b26f53e 100755 --- a/util/floppy-attach +++ b/util/floppy-attach @@ -3,6 +3,11 @@ ### # 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 +# +# 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" diff --git a/util/floppy-make b/util/floppy-make index 6d09eb9..014ff37 100755 --- a/util/floppy-make +++ b/util/floppy-make @@ -1,7 +1,15 @@ #!/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"