Files
config/herbstluftwm/hl_status_deamon.py
2017-05-23 00:59:51 +02:00

54 lines
1.8 KiB
Python
Executable File

#!/usr/bin/python3
import os
import sys
import time
import sys
import subprocess
from hl_panel_content import color_panel
from hl_utils import error, is_cip, shexec, color_remove, hlpath
RED = 0xff0000
GREEN = 0x32CD32
YELLOW = 0xffff00
#Druckerguthaben
def pr_acct_status():
if is_cip():
path = hlpath("pracct.log")
out = color_remove(shexec("pr_acct").split("\n")[0]).split(' ')[-1]
with open(path,'w+') as f:
f.write(out)
def vpn_status():
if not is_cip():
vpn_path = hlpath("vpn_status.log")
out_vpn = subprocess.check_output(["ps","-ef"]).decode().split('\n')
#filter(lambda x: not 'openvpn' in x,out_vpn)
ret = 0
#worst case thats about 1k lines
for l in out_vpn:
if 'openvpn' in l and not 'sudo' in l and not 'grep' in l and not 'cip.sh' in l:
ret += 1;
#print(ret)
if ret == 0:
out_vpn = color_panel("VPN: Link Down",RED)
elif ret == 1:
out_vpn = color_panel("VPN: In Use",GREEN)
elif ret > 1:
out_vpn = color_panel("multiple VPNs connected",YELLOW)
else:
out_vpn = color_panel("VPN: ret was "+str(ret)+" ??",RED)
#print(out_vpn)
with open(vpn_path,'w+') as g:
g.write(out_vpn)
if __name__ == '__main__':
#print('"'+sys.argv[-1]+'"')
if sys.argv[-1]=='--refresh':
vpn_status()
pr_acct_status()
sys.exit()
while(True):
vpn_status()
pr_acct_status()
time.sleep(30)