Re: [dev] dwm: force fullscreen to tile

2015-11-20 Thread Rodrigo S. Cañibano
I'm loving this WM! I just made a quick hack to unfloat fullscreen windows. On 20 November 2015 at 16:23, Draco Metallium(Rodrigo S. Cañibano) wrote: > Thanks, I'll try that. > > But if you come to a more general solution(so it can be apply to other > programs), I would be please to hear it! > >

Re: [dev] [st] Reporting a Segmentation fault

2015-11-20 Thread Greg Reagle
That's right--buf is accessed without bounds checked. The problem is in ttyread() in the while loop, buf gets overflowed, i.e. ptr - buf exceeds BUFSIZ (8192). Haven't figured out how to remedy the problem (yet). On 11/20/2015 01:16 PM, Martti Kühne wrote: I can generally reproduce this reli

Re: [dev] dwm: force fullscreen to tile

2015-11-20 Thread Rodrigo S. Cañibano
Thanks, I'll try that. But if you come to a more general solution(so it can be apply to other programs), I would be please to hear it! On 20 November 2015 at 13:51, Staven wrote: > On Fri, Nov 20, 2015 at 10:47:54AM -0300, Draco Metallium(Rodrigo S. > Cañibano) wrote: >> Good day. >> >> I was w

Re: [dev] Re: [sbase] cal doesn't highlight current day

2015-11-20 Thread Connor Lane Smith
On 20 November 2015 at 18:40, Connor Lane Smith wrote: > I've attached a patch. It's not too bad, although it does have ugly > escape codes. But I don't actually mind either way. Slightly uglier bugfix. cls patch Description: Binary data

Re: [dev] Re: [sbase] cal doesn't highlight current day

2015-11-20 Thread Connor Lane Smith
On 20 November 2015 at 13:13, FRIGN wrote: > I think there should be no discussion without a patch. I don't want to see > anybody express his opinion here unless he has a patch in his attachments. I've attached a patch. It's not too bad, although it does have ugly escape codes. But I don't actual

Re: [dev] [st] Reporting a Segmentation fault

2015-11-20 Thread Martti Kühne
I can generally reproduce this reliably using $ st -e cat /dev/urandom In what way the underflow of buflen is caused though, I have not yet been able to determine. One aspect of the problem is definitely that buflen is generally never range-checked. cheers! mar77i

Re: [dev] dwm: force fullscreen to tile

2015-11-20 Thread Staven
On Fri, Nov 20, 2015 at 10:47:54AM -0300, Draco Metallium(Rodrigo S. Cañibano) wrote: > Good day. > > I was wondering, is there some way to force fullscreen apps to a tile? > > For example, in i3wm I could put a youtube video in full screen, then > turn i3wm full screen off, and the video would

Re: [dev] [st] Reporting a Segmentation fault

2015-11-20 Thread Martti Kühne
Hahaha. I can clearly see this happen in the code in ttyread(). You don't even exist for this code. cheers! mar77i

[dev] dwm: force fullscreen to tile

2015-11-20 Thread Rodrigo S. Cañibano
Good day. I was wondering, is there some way to force fullscreen apps to a tile? For example, in i3wm I could put a youtube video in full screen, then turn i3wm full screen off, and the video would continue in 'full screen' but inside a tile. Can it be done? Thanks! And sorry for the wroken Eng

Re: [dev] [st] Reporting a Segmentation fault

2015-11-20 Thread Marc Collin
Following up, the backtrace. I wish this helps. Let me know what else I can do. Thanks. erresc: unknown sequence ESC 0xFD '.' ./seg_wrapper.sh: line 3: 2870 Segmentation fault (core dumped) "$@" Reading symbols from st...done. [New LWP 2870] warning: Can't read pathname for load map: No err

Re: [dev] [st] Reporting a Segmentation fault

2015-11-20 Thread Marc Collin
v4hn - sorry. my terminfo is version 6.0. my kernel has the grsec patch. I'll try to see if I can get a backtrace as you request. Martii - my vimrc is simple. set nocompatible, set bs=2, set history=50, set ruler and set nomodeline. That's all I have. On Fri, Nov 20, 2015 at 11:20 AM, Martti K

Re: [dev] [st] Reporting a Segmentation fault

2015-11-20 Thread Martti Kühne
On Fri, Nov 20, 2015 at 2:09 PM, Marc Collin wrote: > I am using the grsec kernel, for better security. Maybe st doesn't > play well with that? > Just tested on a clean st and it segfaults too. > I'm not familiar with the details of grsecurity, but it's definitely not about parsing escape sequenc

Re: [dev] [st] Reporting a Segmentation fault

2015-11-20 Thread v4hn
On Fri, Nov 20, 2015 at 10:52:28AM -0200, Marc Collin wrote: > Hello, I want to report a segfault when using st. > > Steps to reproduce: > 1) open st > 2) "vim file" > 3) Press "Enter" > > Around 30% of times this results in a crash. > Here's the message st gives: > > erresc: unknown sequence ES

Re: [dev] Re: [sbase] cal doesn't highlight current day

2015-11-20 Thread FRIGN
On Fri, 20 Nov 2015 08:08:26 -0500 Greg Reagle wrote: > I don't think we need to discuss anything. I think what's missing is a patch. > I think that a patch to highlight the current day would *probably* be accepted > (but I have no authority, just a regular user/developer). I think there should

Re: [dev] Re: [sbase] cal doesn't highlight current day

2015-11-20 Thread v4hn
On Fri, Nov 20, 2015 at 10:48:15AM -0200, Marc Collin wrote: > I really believe this would be a 0% complexity addition Don't believe but demonstrate. Did you write a patch yet? util-linux' cal manpage states: > the day will be highlighted if the calendar is displayed on a terminal. Go ahead. >

Re: [dev] [st] Reporting a Segmentation fault

2015-11-20 Thread Marc Collin
I am using the grsec kernel, for better security. Maybe st doesn't play well with that? Just tested on a clean st and it segfaults too. On Fri, Nov 20, 2015 at 11:03 AM, FRIGN wrote: > On Fri, 20 Nov 2015 10:52:28 -0200 > Marc Collin wrote: > > Hey Marc, > >> Hello, I want to report a segfault w

Re: [dev] Re: [sbase] cal doesn't highlight current day

2015-11-20 Thread Greg Reagle
I don't think we need to discuss anything. I think what's missing is a patch. I think that a patch to highlight the current day would *probably* be accepted (but I have no authority, just a regular user/developer).

Re: [dev] [st] Reporting a Segmentation fault

2015-11-20 Thread FRIGN
On Fri, 20 Nov 2015 10:52:28 -0200 Marc Collin wrote: Hey Marc, > Hello, I want to report a segfault when using st. I can't reproduce it here. What system are you running, any memory guards? Does it happen with a "clean" st (delete config.h, recompile)? Cheers FRIGN -- FRIGN

[dev] [st] Reporting a Segmentation fault

2015-11-20 Thread Marc Collin
Hello, I want to report a segfault when using st. Steps to reproduce: 1) open st 2) "vim file" 3) Press "Enter" Around 30% of times this results in a crash. Here's the message st gives: erresc: unknown sequence ESC 0xFD '.' Segmentation fault I am using the latest st from the git repo. If any

Re: [dev] Re: [sbase] cal doesn't highlight current day

2015-11-20 Thread Marc Collin
Here's a screenshot that shows this (very simple) feature and how it's useful. What people think? I really believe this would be a 0% complexity addition and the usefulness would be very high. http://i.imgur.com/RQUz6cR.png Left is how it is. Right is how it could be (with current day highlighted).

Re: [dev] sj: ucspi

2015-11-20 Thread Jan Klemkow
Hi, Thanks for testing my jabber client and sorry for its inconvenience. yes, STARTTLS is not implemented at the moment. I use jabber.ccc.de for testing, cause they use the Port 5223 for TLS which is not recommend. I will implement STARTSSL in the near future, stay tuned. sslc(1) is the legacy

Re: [dev] [sent] 0.1 release

2015-11-20 Thread Claudio
Hi, I've implemented a web-based "port" of sent called wsent[0]. I agree to not use the web for anything so I decided to abandon the project after reading the Quenting Rameau post where he suggests a slide to image conversion. Though, since I've put some effort on writing wsent (which is in still