diff --git a/dsk/tmp/alice.txt b/dsk/tmp/alice.txt index f24c619..61baa90 100644 --- a/dsk/tmp/alice.txt +++ b/dsk/tmp/alice.txt @@ -1,6 +1,6 @@ ALICE'S ADVENTURES IN WONDERLAND -Lewis Carroll +Lewis Carroll (1865) CHAPTER I. Down the Rabbit-Hole diff --git a/dsk/tmp/machines.txt b/dsk/tmp/machines.txt new file mode 100644 index 0000000..d0a6a6f --- /dev/null +++ b/dsk/tmp/machines.txt @@ -0,0 +1,32 @@ +ALL WATCHED OVER BY MACHINES OF LOVING GRACE + +Richard Brautigan (1967) + + +I like to think (and +the sooner the better!) +of a cybernetic meadow +where mammals and computers +live together in mutually +programming harmony +like pure water +touching clear sky. + +I like to think +(right now please!) +of a cybernetic forest +filled with pines and electronics +where deer stroll peacefully +past computers +as if they were flowers +with spinning blossoms. + +I like to think +(it has to be!) +of a cybernetic ecology +where we are free of our labors +and joined back to nature, +returned to our mammal +brothers and sisters, +and all watched over +by machines of loving grace. diff --git a/src/usr/install.rs b/src/usr/install.rs index 838279d..3deb275 100644 --- a/src/usr/install.rs +++ b/src/usr/install.rs @@ -50,6 +50,7 @@ pub fn copy_files(verbose: bool) { copy_file("/ini/fonts/zap-vga-8x16.psf", include_bytes!("../../dsk/ini/fonts/zap-vga-8x16.psf"), verbose); copy_file("/tmp/alice.txt", include_bytes!("../../dsk/tmp/alice.txt"), verbose); + copy_file("/tmp/machines.txt", include_bytes!("../../dsk/tmp/machines.txt"), verbose); create_dir("/tmp/lisp", verbose); copy_file("/tmp/lisp/factorial.lsp", include_bytes!("../../dsk/tmp/lisp/factorial.lsp"), verbose);