[dev] [st][PATCH] Cancel DCS with SUB, CAN, ESC or any CC1 code

2014-04-26 Thread Roberto E. Vargas Caballero
From http://www.vt100.net/docs/vt510-rm/chapter4: *The VT510 ignores all following characters until it receives a SUB, ST, or any other C1 control character. So OSC, PM and APC sequence ends with a SUB (it cancels the sequence and show a question mark as error), ST or any

[dev] [st][PATCH v2] Cancel DCS with SUB, CAN, ESC or any CC1 code

2014-04-26 Thread Roberto E. Vargas Caballero
From http://www.vt100.net/docs/vt510-rm/chapter4: *The VT510 ignores all following characters until it receives a SUB, ST, or any other C1 control character. So OSC, PM and APC sequence ends with a SUB (it cancels the sequence and show a question mark as error), ST or any

[dev] [dwm] trayless workflow

2014-04-26 Thread Yuri Karaban
Hello, I browsed suckless mailing lists and I found that system tray is discouraged in dwm and it's suggested to use tags instead. I was always using workspace separation (with other window manager) and I have instant messengers on dedicated workspace. But system tray is still very useful,

Re: [dev] [dwm] trayless workflow

2014-04-26 Thread Manolo Martínez
I just want to know what what is the alternative way to monitor activity of applications which I usually monitor with the tray icons. I find that urgency hints are more than enough for irc. You probably need to instruct your irc client to issue them (e.g. in irssi/config: bell_beeps=yes) and

Re: [dev] [dwm] trayless workflow

2014-04-26 Thread Yuri Karaban
MM == Manolo Martínez man...@austrohungaro.com writes: Hi Manolo! Thank you very much, it's exactly what I need :-) It's wonderful that dwm indicate UrgencyHint on hidden tags, it covers my needs 100%. Now I can easily get along without system tray. I just want to know what what is the

[dev] [PATCH] add break;s for last cases in switch statements

2014-04-26 Thread Markus Teich
--- Heyho, here is the patch. For cases ending with return; I did not add a break since it serves the same functionallity in this context. --Markus st.c | 4 1 file changed, 4 insertions(+) diff --git a/st.c b/st.c index d2261e2..49df792 100644 --- a/st.c +++ b/st.c @@ -1228,6 +1228,7