Fix blank lines and whitespaces
This commit is contained in:
parent
4840362030
commit
4fe4408736
@ -1,5 +1,6 @@
|
|||||||
from i3pystatus import IntervalModule
|
from i3pystatus import IntervalModule
|
||||||
|
|
||||||
|
|
||||||
class Pianobar(IntervalModule):
|
class Pianobar(IntervalModule):
|
||||||
"""
|
"""
|
||||||
Shows the title and artist name of the current music
|
Shows the title and artist name of the current music
|
||||||
@ -36,13 +37,13 @@ class Pianobar(IntervalModule):
|
|||||||
}
|
}
|
||||||
|
|
||||||
def on_leftclick(self):
|
def on_leftclick(self):
|
||||||
open(self.ctlfile,"w").write("p")
|
open(self.ctlfile, "w").write("p")
|
||||||
|
|
||||||
def on_rightclick(self):
|
def on_rightclick(self):
|
||||||
open(self.ctlfile,"w").write("n")
|
open(self.ctlfile, "w").write("n")
|
||||||
|
|
||||||
def on_upscroll(self):
|
def on_upscroll(self):
|
||||||
open(self.ctlfile,"w").write(")")
|
open(self.ctlfile, "w").write(")")
|
||||||
|
|
||||||
def on_downscroll(self):
|
def on_downscroll(self):
|
||||||
open(self.ctlfile,"w").write("(")
|
open(self.ctlfile, "w").write("(")
|
||||||
|
Loading…
Reference in New Issue
Block a user