Ver Código Fonte

~/.config/awesome/rc.lua: Log tag switching.

This will make it possible to track the actual time spent working on
"real" projects and when I just read stuff. :)
Lucas Stadler 13 anos atrás
pai
commit
298051e4ef
1 arquivos alterados com 4 adições e 0 exclusões
  1. 4 0
      .config/awesome/rc.lua

+ 4 - 0
.config/awesome/rc.lua

@ -377,6 +377,10 @@ client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_n
377 377
378 378
-- My own stuff
379 379
380
screen[1]:connect_signal("tag::history::update", function()
381
	os.execute("/home/lu/.bin/events tag '" .. awful.tag.selected(1).name .. "'")
382
end)
383
380 384
client.connect_signal("focus", function(c)
381 385
	os.execute("/home/lu/.bin/events focus '" .. c.name .. "'")
382 386
end)