Deleting the old scripts as they're no longer used.
This commit is contained in:
parent
c4799ed8b6
commit
27c06cdca3
|
@ -1,34 +0,0 @@
|
||||||
#!/usr/bin/env python2
|
|
||||||
import os
|
|
||||||
from gi.repository import Notify
|
|
||||||
|
|
||||||
path = os.path.abspath(os.path.dirname(os.path.abspath(__file__)))
|
|
||||||
|
|
||||||
def readFile(path): #self.filename
|
|
||||||
myDatei = open(path, "r")
|
|
||||||
myList = []
|
|
||||||
#Liste aus Datei erstellen
|
|
||||||
for Line in myDatei:
|
|
||||||
Line = Line.rstrip()
|
|
||||||
#Line = Line.decode('utf8')
|
|
||||||
myList.append(Line)
|
|
||||||
myDatei.close()
|
|
||||||
return(myList)
|
|
||||||
|
|
||||||
def writeFile(path, myList): #self.filename
|
|
||||||
myDatei = open(path, "w")
|
|
||||||
#Liste aus Datei erstelle
|
|
||||||
myDatei.writelines(myList)
|
|
||||||
myDatei.close()
|
|
||||||
|
|
||||||
status = readFile(os.path.join(path, 'status.txt'))
|
|
||||||
if status[0] == "on":
|
|
||||||
writeFile(os.path.join(path, 'status.txt'), ["off"])
|
|
||||||
Notify.init ("Rotation-ON")
|
|
||||||
RotationOFF=Notify.Notification.new ("Rotation","Screenrotation is now turned OFF","dialog-information")
|
|
||||||
RotationOFF.show ()
|
|
||||||
if status[0] == "off":
|
|
||||||
writeFile(os.path.join(path, 'status.txt'), ["on"])
|
|
||||||
Notify.init ("Rotation-OFF")
|
|
||||||
RotationON=Notify.Notification.new ("Rotation","Screenrotation is now turned ON","dialog-information")
|
|
||||||
RotationON.show ()
|
|
|
@ -1 +0,0 @@
|
||||||
on
|
|
|
@ -1,30 +0,0 @@
|
||||||
#!/usr/bin/env python2
|
|
||||||
import os
|
|
||||||
|
|
||||||
def readFile(path): #self.filename
|
|
||||||
myDatei = open(path, "r")
|
|
||||||
myList = []
|
|
||||||
#Liste aus Datei erstellen
|
|
||||||
for Line in myDatei:
|
|
||||||
Line = Line.rstrip()
|
|
||||||
#Line = Line.decode('utf8')
|
|
||||||
myList.append(Line)
|
|
||||||
myDatei.close()
|
|
||||||
return(myList)
|
|
||||||
|
|
||||||
def writeFile(path, myList): #self.filename
|
|
||||||
myDatei = open(path, "w")
|
|
||||||
#Liste aus Datei erstelle
|
|
||||||
myDatei.writelines(myList)
|
|
||||||
myDatei.close()
|
|
||||||
|
|
||||||
|
|
||||||
devicename = "NTRG0001:01 1B96:1B05"
|
|
||||||
penname = "'NTRG0001:01 1B96:1B05 Pen'"
|
|
||||||
path = os.path.abspath(os.path.dirname(os.path.abspath(__file__)))
|
|
||||||
|
|
||||||
status = readFile(os.path.join(path, 'touch.txt'))
|
|
||||||
if str(status[0]) == "on":
|
|
||||||
writeFile(os.path.join(path, 'touch.txt'), ["off"])
|
|
||||||
if str(status[0]) == "off":
|
|
||||||
writeFile(os.path.join(path, 'touch.txt'), ["on"])
|
|
|
@ -1 +0,0 @@
|
||||||
on
|
|
Loading…
Reference in New Issue