about summary refs log tree commit diff stats
path: root/Readme.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-10-07 12:14:35 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-07 12:14:35 -0700
commitb0b486732a056d3d54ece46282821edbc42d85f8 (patch)
treedd16e8c1b5519dc2b6089eeefb0efd429ae88c90 /Readme.md
parent29fe558a60c44805f925983ad6557825390fe4c9 (diff)
downloadmu-b0b486732a056d3d54ece46282821edbc42d85f8.tar.gz
3462
Better examples in the Readme: keyboard, mouse and filesystem tests.
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md16
1 files changed, 11 insertions, 5 deletions
diff --git a/Readme.md b/Readme.md
index e9c170f3..8cda946f 100644
--- a/Readme.md
+++ b/Readme.md
@@ -210,12 +210,18 @@ dots):
 
 Similarly you can fake the keyboard to pretend someone typed something:
 
-  ```
-  assume-keyboard [a2-a4]
-  ```
+<img alt='fake keyboard' src='html/fake-keyboard.png'>
+
+..or clicked somewhere:
+
+<img alt='fake console (keyboard, mouse, ..)' src='html/fake-console.png'>
+
+A fake file-system can map arbitrary paths to contents:
+
+<img alt='fake file-system' src='html/fake-filesystem.png'>
 
-As we add a file system, graphics, audio, network support and so on, we'll
-augment scenarios with corresponding abilities.
+As we add network support, graphics, audio, and so on, we'll augment scenarios
+with corresponding abilities.
 
 ---