blink: implement 'blink'

This commit is contained in:
Daniel Eklöf 2019-07-21 20:11:20 +02:00
parent 07aad4a534
commit e21ab8cf33
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 79 additions and 1 deletions

View file

@ -246,6 +246,10 @@ struct terminal {
bool flash_active;
int flash_timer_fd;
bool is_blinking;
enum { BLINK_ON, BLINK_OFF } blink_mode;
int blink_timer_fd;
struct vt vt;
struct kbd kbd;