Initial commit

This commit is contained in:
neingeist 2019-07-20 19:39:38 +02:00
commit 3f4795ebcb
4 changed files with 701 additions and 0 deletions

18
no-counters.py Normal file
View file

@ -0,0 +1,18 @@
from gi.repository import GObject, Liferea
class NrNoCountersPlugin (GObject.Object, Liferea.ShellActivatable):
__gtype_name__ = 'NrNoCountersPlugin'
shell = GObject.property (type=Liferea.Shell)
def do_activate (self):
self.treeview = self.shell.lookup ("feedlist")
self.counter_column = self.treeview.get_column (1)
self.counter_column.set_visible (False)
self.treeview.queue_draw ()
return
def do_deactivate (self):
self.counter_column.set_visible (True)
self.treeview.queue_draw ()
return