add demo, load ignore screen again

This commit is contained in:
chrys 2017-01-16 23:04:29 +01:00
parent ccda45357b
commit 346cb78d56
2 changed files with 25 additions and 0 deletions

24
play zone/pya.py Executable file
View File

@ -0,0 +1,24 @@
#!/bin/python3
import sys, os
import pty
mode = 'wb'
shell = '/bin/bash'
if 'SHELL' in os.environ:
shell = os.environ['SHELL']
filename = '/home/chrys/mytypescript.txt'
script = open(filename, mode)
def read(fd):
data = os.read(fd, 1024)
script.write(data)
return data
def write(fd):
data = os.read(fd, 1024)
return data
pty.spawn(shell, read, write)

View File

@ -25,6 +25,7 @@ class screenManager():
self.env['runtime']['screenDriver'].getCurrScreen()
self.env['screenData']['oldApplication'] = self.env['screenData']['newApplication']
if self.isScreenChange():
self.autoIgnoreScreens = self.env['runtime']['screenDriver'].getIgnoreScreens()
self.changeBrailleScreen()
if not self.isSuspendingScreen(self.env['screenData']['newTTY']):
self.env['runtime']['screenDriver'].update(trigger)