21 lines
379 B
Ruby
21 lines
379 B
Ruby
# vim: ft=ruby
|
|
|
|
class BspwmTaskbar < Worker
|
|
def mainloop()
|
|
IO.popen("xtitle -s -f '%s'") do |pipe|
|
|
pipe.each do |line|
|
|
line.chomp!
|
|
|
|
if line == ""
|
|
self.write ""
|
|
else
|
|
tmpl = Template.new(@my_config['begin'] + line + @my_config['end'])
|
|
self.write tmpl.render(@config, nil)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
Modules.add("bspwm_taskbar", "BspwmTaskbar")
|