Re: [hackers] [st][patch] Handle DECRQM (Request Mode) escape sequences

2020-11-29 Thread François-Xavier Carton
On Sun, Nov 29, 2020 at 05:37:30PM +0100, Hiltjo Posthuma wrote: > > Hi Francois, > > First: thanks for the patch. > > Do you have maybe a practical use-case example why you'd like to request > supporting this? > > In all st years it has not been requested before. I'd like to prevent >

Re: [hackers] [dwm][PATCH] Vertical size factor for first tile in master/stacking area

2020-11-29 Thread Xavier Baez
I think like it is good with dwm.c and config.def.h You can name it ‘ stackvfact’ I would recommend you try your patch with vanitygaps and with csfact and with stackmfact just to see you don’t have weird results. On Sat, Nov 28, 2020 at 11:26 AM Sebastiano Tronto < sebastiano.tro...@gmail.com>

Re: [hackers] [dmenu][PATCH 0/2] New option for floating window

2020-11-29 Thread Quentin Rameau
> Regarding the second one, I think you could put it on the wiki. Oh and I forgot, you should test in on displays with several monitors if you can!

Re: [hackers] [dmenu][PATCH 0/2] New option for floating window

2020-11-29 Thread Quentin Rameau
Hello Jérémy, Thank you for you patches. > Those 2 patches allows to have dmenu displayed in a pop-up window in the > middle of the screen. Personally I like the way it looks and I think > that this option (-fw) could be available for everyone. I'll comment both here as these are general

[hackers] [dmenu][PATCH 2/2] Add floating window option

2020-11-29 Thread Jérémy Lefaure
With the -fw option, the dmenu window pops in the middle of the screen, giving a UI alternative to top or bottom menus. --- config.def.h | 2 ++ dmenu.1 | 4 dmenu.c | 18 -- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/config.def.h

[hackers] [dmenu][PATCH 0/2] New option for floating window

2020-11-29 Thread Jérémy Lefaure
Those 2 patches allows to have dmenu displayed in a pop-up window in the middle of the screen. Personally I like the way it looks and I think that this option (-fw) could be available for everyone. This is my first contribution to this project, please let me know if everything is ok with my

[hackers] [dmenu][PATCH 1/2] Dynamically reduce vertical window size

2020-11-29 Thread Jérémy Lefaure
When the number of items is less than the number of lines on vertical windows, it is more beautiful to have a reduced window height. --- dmenu.c | 9 + 1 file changed, 9 insertions(+) diff --git a/dmenu.c b/dmenu.c index 65f25ce..86dbe16 100644 --- a/dmenu.c +++ b/dmenu.c @@ -132,6

Re: [hackers] [st][patch] Handle DECRQM (Request Mode) escape sequences

2020-11-29 Thread Hiltjo Posthuma
On Fri, Nov 27, 2020 at 01:54:36AM +0100, François-Xavier Carton wrote: > Handle DECRQM (Request Mode) escape sequences > > The DECRQM [1] escape sequence is a request to the terminal to query the state > of a mode. The terminal replies to this request with a DECRPM [2] escape > sequence,