Преглед на файлове

~/.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 години
родител
ревизия
d9de26a85a
променени са 1 файла, в които са добавени 7 реда и са изтрити 0 реда
  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)