mirror of
https://github.com/rricharz/Tek4010.git
synced 2026-01-13 15:27:31 +00:00
screen dump under computer control with ctrl-w
This commit is contained in:
parent
71d79cb8d2
commit
41b4922cfe
@ -1,3 +1,5 @@
|
||||
[](https://travis-ci.org/rricharz/Tek4010)
|
||||
|
||||
# Tektronix 4010 and 4014 Terminal Emulator
|
||||
|
||||
This is a [Tektronix 4010 and 4014](https://en.wikipedia.org/wiki/Tektronix_4010) terminal emulator
|
||||
@ -137,10 +139,11 @@ keys frequently to avoid to get a mess on the screen, as on a real Tektronix 401
|
||||
The hardcopy function on the Tektronix 4010 is emulated with a screen dump.
|
||||
|
||||
control-w Make a screen dump in current directory using scrot
|
||||
Can be typed on the keyboard or sent by the computer during alpha mode
|
||||
|
||||
You can also use the following control key function to close tek4010:
|
||||
|
||||
control-q Close tek4010 window and quit tek4010
|
||||
control-q Close tek4010 window and quit tek4010.
|
||||
|
||||
**Login into the system running simh (same or different Raspberry Pi)**
|
||||
|
||||
|
||||
2
main.c
2
main.c
@ -149,7 +149,7 @@ static void on_key_press(GtkWidget *widget, GdkEventKey *event, gpointer user_da
|
||||
system("scrot --focussed");
|
||||
return;
|
||||
}
|
||||
else if (event->keyval == 0x0071) { // "<ctrl>q" makes screendump
|
||||
else if (event->keyval == 0x0071) { // "<ctrl>q" quits tek4010
|
||||
on_quit_event();
|
||||
return;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user