예제 #1
0
 def info(self):
     d = Layout.info(self)
     d["rows"] = [[win.name for win in self.get_row(i)]
                  for i in xrange(self.get_num_rows())]
     d["current_window"] = self.current_window
     d["clients"] = [x.name for x in self.clients]
     return d
예제 #2
0
 def info(self):
     d = Layout.info(self)
     d["rows"] = [
         [win.name for win in self.get_row(i)]
         for i in xrange(self.get_num_rows())
     ]
     d["current_window"] = self.current_window
     d["clients"] = [x.name for x in self.clients]
     return d
예제 #3
0
파일: stack.py 프로젝트: Dieterbe/qtile
 def info(self):
     d = Layout.info(self)
     d["stacks"] = [i.info() for i in self.stacks]
     d["current_stack"] = self.currentStackOffset
     return d
예제 #4
0
 def info(self):
     d = Layout.info(self)
     d["stacks"] = [i.info() for i in self.stacks]
     d["current_stack"] = self.currentStackOffset
     d["clients"] = [c.name for c in self.clients]
     return d
예제 #5
0
 def info(self):
     d = Layout.info(self)
     d["clients"] = [x.name for x in self.clients]
     return d
예제 #6
0
파일: floating.py 프로젝트: Echota/qtile
 def info(self):
     d = Layout.info(self)
     d["clients"] = [i.name for i in self.clients]
     return d
예제 #7
0
파일: stack.py 프로젝트: mikkeloscar/qtile
 def info(self):
     d = Layout.info(self)
     d["stacks"] = [i.info() for i in self.stacks]
     d["current_stack"] = self.currentStackOffset
     return d
예제 #8
0
파일: tree.py 프로젝트: bl4ckb1rd/qtile
 def info(self):
     d = Layout.info(self)
     d["clients"] = [i.name for i in self._nodes]
     d["sections"] = [i.title for i in self._tree.children]
     return d