diff options
author | Jacob Moody <moody@posixcafe.org> | 2022-08-18 11:44:46 +0000 |
---|---|---|
committer | Jacob Moody <moody@posixcafe.org> | 2022-08-18 11:44:46 +0000 |
commit | f508dfaab17c0ec9519078db82c9d5b5f1ba76a5 (patch) | |
tree | 54554fde6aab9c55c14f5d1242096573b572a74a /sys/src/cmd/rio/data.c | |
parent | e7d03d19100fe3180906c8ce3f2cab3ba9387fe8 (diff) |
rio: require a confirmation for Exit
Even accidentally killing a subrio can be
annoying. So instead of only showing this
on subrios, show it always but always
require an additional click to actually
exit.
Diffstat (limited to 'sys/src/cmd/rio/data.c')
-rw-r--r-- | sys/src/cmd/rio/data.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sys/src/cmd/rio/data.c b/sys/src/cmd/rio/data.c index 86e43c72f..d65ca55f0 100644 --- a/sys/src/cmd/rio/data.c +++ b/sys/src/cmd/rio/data.c @@ -82,6 +82,18 @@ Cursor tl = { 0x0e, 0x00, 0x0e, 0x00, 0x0e, 0x00, 0x00, 0x00, } }; +Cursor skull = { + {-7,-7}, + {0x00, 0x00, 0x00, 0x00, 0xc0, 0x03, 0xe7, 0xe7, + 0xff, 0xff, 0xff, 0xff, 0x3f, 0xfc, 0x1f, 0xf8, + 0x0f, 0xf0, 0x3f, 0xfc, 0xff, 0xff, 0xff, 0xff, + 0xef, 0xf7, 0xc7, 0xe3, 0x00, 0x00, 0x00, 0x00,}, + {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x03, + 0xE7, 0xE7, 0x3F, 0xFC, 0x0F, 0xF0, 0x0D, 0xB0, + 0x07, 0xE0, 0x06, 0x60, 0x37, 0xEC, 0xE4, 0x27, + 0xC3, 0xC3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,} +}; + Cursor t = { {-7, -8}, {0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x06, 0xc0, |