zirias@
Developer
Update 2016-03-27:
v0.2 released
Update 2016-03-25:
Found a problem with `xcons_curses` -- after hours, it stops working, eating up all the cycles of the core it is running on. I'm trying to debug this behavior now, hopefully pushing a fix soon. edit: I think this fixed it
Update 2016-03-22:
Now there IS an improvement (a unix domain socket is used now, this is much more reliable and allows multiple consoles reading from it) and a new name:
https://github.com/zirias/xcons
Hi all,
today I produced a little bit of code to help with getting a "console log" on my desktop -- you know, like
This is what it looks like for me now:
If anyone interested, here is the code. I use this line in syslog.conf(5):
The pipe was created with
For display, I used
So what do you think of this idea? Any improvements?
v0.2 released
Update 2016-03-25:
Found a problem with `xcons_curses` -- after hours, it stops working, eating up all the cycles of the core it is running on. I'm trying to debug this behavior now, hopefully pushing a fix soon. edit: I think this fixed it
Update 2016-03-22:
Now there IS an improvement (a unix domain socket is used now, this is much more reliable and allows multiple consoles reading from it) and a new name:
https://github.com/zirias/xcons
Hi all,
today I produced a little bit of code to help with getting a "console log" on my desktop -- you know, like
xconsole
, just different. Basic idea is having syslogd
write to a FIFO that's read and displayed by a little curses(3) tool running inside an X terminal emulator.This is what it looks like for me now:
If anyone interested, here is the code. I use this line in syslog.conf(5):
Code:
*.err;kern.notice;auth.notice;mail.crit |exec /home/felix/bin/pipewrite /usr/local/var/run/console.pipe
mkfifo /usr/local/var/run/console.pipe
For display, I used
konsole
with a custom profile starting /home/felix/bin/consolepipe /usr/local/var/run/console.pipe
instead of a shell -- you can match that with a kwin
window-specific rule quite easily because konsole
creates the window first with the name of the profile as title.So what do you think of this idea? Any improvements?
Last edited: