Update linux.py
This commit is contained in:
parent
45186d7e6d
commit
70fd0a1311
@ -31,11 +31,12 @@ class driver():
|
|||||||
def getCurrApplication(self, screen):
|
def getCurrApplication(self, screen):
|
||||||
apps = []
|
apps = []
|
||||||
try:
|
try:
|
||||||
apps = subprocess.Popen('ps a -o comm,tty,stat', shell=True, stdout=subprocess.PIPE).stdout.read().decode()[:-1].split('\n')
|
currScreen = str(screen)
|
||||||
|
apps = subprocess.Popen('ps -t tty' + currScreen + ' -o comm,tty,stat', shell=True, stdout=subprocess.PIPE).stdout.read().decode()[:-1].split('\n')
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(e)
|
print(e)
|
||||||
return ''
|
return ''
|
||||||
currScreen = str(screen)
|
|
||||||
try:
|
try:
|
||||||
for i in apps:
|
for i in apps:
|
||||||
i = i.upper()
|
i = i.upper()
|
||||||
|
Loading…
Reference in New Issue
Block a user