-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitTify.py
executable file
·46 lines (36 loc) · 1.1 KB
/
gitTify.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*- coding: utf-8 -*-
#Imports necessários !
import time
import sys
import os
#Se existir um import necessário para o sistema operativo esta variavel passa para 1
redFlag=0
#Verifica se estas bibliotecas estão disponiveis , visto que variam de sistema para sistema
try:
import linux.gitTify as linux
except ImportError:
if sys.platform.startswith('linux'):
print "Linux notifications not supported"
print "Please install punotify"
redFlag=1
try:
import windows10.gitTify as windows10
except ImportError:
if sys.platform.startswith('win'):
print "windows notifications not supported"
print "Please install win10toast"
redFlag=1
#Verifica o tipo de sistema operativo para executar o serviço!
#Garantindo que assim o sistema de notificações funciona sempre !
def main(argv):
global redFlag
if redFlag == 1:
return
if sys.platform.startswith('linux'):
linux.start(argv)
elif sys.platform.startswith('win'):
windows10.start(argv)
while 1:
time.sleep(60)
if __name__ == "__main__":
main(sys.argv)