Просмотр исходного кода

~/.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
Родитель
Сommit
d9de26a85a
1 измененных файлов с 7 добавлено и 0 удалено
  1. 7 0
      .config/awesome/rc.lua

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

396
	end
396
	end
397
	os.execute("/home/lu/.bin/events focus '" .. c.name .. "'")
397
	os.execute("/home/lu/.bin/events focus '" .. c.name .. "'")
398
end)
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)