Sfoglia il codice sorgente

~/.config/awesome/rc.lua: Log window titles to eventstream.

This is a temporary solution, see
https://github.com/heyLu/lp/rust/keylog-xlib.c for my attempt to do this
on my own.
Lucas Stadler 13 anni fa
parent
commit
d9de26a85a
1 ha cambiato i file con 7 aggiunte e 0 eliminazioni
  1. 7 0
      .config/awesome/rc.lua

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

@ -396,3 +396,10 @@ client.connect_signal("focus", function(c)
396 396
	end
397 397
	os.execute("/home/lu/.bin/events focus '" .. c.name .. "'")
398 398
end)
399
400
client.connect_signal("property::name", function(c)
401
	if (c.name == nil) then
402
		return
403
	end
404
	os.execute("/home/lu/.bin/events focus '" .. c.name .. "'")
405
end)