[hackers] [st] Initial font size issue.

2016-11-05 Thread Ian Remmler
Hi, When I specify a font by point size (I'm using "Inconsolata:size=12"), characters that are substituted from another font because they are not in the main one appear too small. Doing a zoom reset fixes it. For example: Before: http://i.imgur.com/G4Mfv4X.png After:

Re: [hackers] [st][PATCH] Fixed 'missing glyph doesn't use fontconfig config substitutions' bug

2016-11-23 Thread Ian Remmler
On Wed, Nov 23, 2016 at 10:05:55PM +0100, k...@shike2.com wrote: > Ok, your patch seems correct, but I would like to know if your patch solves > the issue of the commit 4242027, because in this case we can remove the > changes of that commit, which are a bit ugly. Can you verify it? I reverted

Re: [hackers] [dwm][PATCH] generalize dmenumon so any command may use it

2016-12-16 Thread Ian Remmler
Any thoughts on this? I use dmenu (and now, wjt) for a few things other than just dmenu_run, and it would be nice to have them be consistent about running on the current monitor without having to munge dwm.c. On Mon, Dec 05, 2016 at 09:44:09AM -0600, Ian Remmler wrote: > --- > config.def

[hackers] [dwm][PATCH] generalize dmenumon so any command may use it

2016-12-05 Thread Ian Remmler
--- config.def.h | 4 ++-- dwm.c| 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/config.def.h b/config.def.h index ba9a240..0f1749f 100644 --- a/config.def.h +++ b/config.def.h @@ -55,8 +55,8 @@ static const Layout layouts[] = { #define SHCMD(cmd) { .v = (const

[hackers] [dwm][PATCH] clarify tile layout description in man page

2016-11-30 Thread Ian Remmler
--- dwm.1 | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/dwm.1 b/dwm.1 index 60ca1d6..e3b2c38 100644 --- a/dwm.1 +++ b/dwm.1 @@ -10,8 +10,9 @@ and floating layouts. Either layout can be applied dynamically, optimising the environment for the application in use and

[hackers] [slstatus][PATCH] Add flexible formatting to keyboard_indicators.

2018-06-03 Thread Ian Remmler
Updated for style. --- components/keyboard_indicators.c | 38 +++- config.def.h | 3 ++- 2 files changed, 30 insertions(+), 11 deletions(-) diff --git a/components/keyboard_indicators.c b/components/keyboard_indicators.c index 73ba32e..b35eba1

[hackers] [slstatus][PATCH] Add flexible formatting to keyboard_indicators.

2018-05-31 Thread Ian Remmler
Add output formatting for keyboard indicators, allowing the user to specify order and whether to only show an indicator when it is on or always show it and use case to indicate state. --- components/keyboard_indicators.c | 39 1 file changed, 29 insertions(+), 10

Re: [hackers] [slstatus][PATCH] Add flexible formatting to keyboard_indicators.

2018-06-01 Thread Ian Remmler
On Fri, Jun 01, 2018 at 05:35:16PM +0200, Aaron Marcher wrote: > You could also add something like "see keyboard_indicators.c for > additional documentation". That's reasonable. > Additionally, for a minimum, add a comment for the argument and an example > in config.def.h (like for the other

[hackers] [dwm][PATCH] Add color scheme entry for urgent windows

2019-09-20 Thread Ian Remmler
Draw tags to which windows with the urgent hint set are attached with a color scheme entry rather than inverting the normal colors. Included is the patch that Ivan Tham recently posted to highlight the window's border as well, modified to use the new scheme entry. --- config.def.h | 2 ++

[hackers] [scroll][PATCH] Don't retain any clear screen sequence variants.

2020-04-25 Thread Ian Remmler
(Simpler, replaces previous patch) Elide all clear screen escape sequences from the scrollback buffer, partial or complete. zshell, for example, emits ^[[J on startup, which causes the scrolled down portion of the screen to be cleared when scrolling to the beginning of the buffer and less than

[hackers] [scroll][PATCH] Don't retain any clear screen sequence variants.

2020-04-25 Thread Ian Remmler
Elide all clear screen escape sequences from the scrollback buffer, partial or complete. zshell, for example, emits ^[[J on startup, which causes the scrolled down portion of the screen to be cleared when scrolling to the beginning of the buffer and less than the entire screen is scrolled. ---