Re: [hackers] [dwm] [PATCH] break up long config line

2016-12-05 Thread Anselm R Garbe
On 5 December 2016 at 15:55, Markus Teich  wrote:
> Markus Teich wrote:
>> Anselm R Garbe wrote:
>> > Why, are you entering command line options also on separate lines?
>>
>> Nope, but my command line input mostly is way shorter, because I don't have 
>> to
>> enter a declaration in front of it and if I have such a special case like
>> color schemes, I tend to put them away in a "config" file, e.g. creating an
>> alias in `.mkshrc`. In the rare cases where I have complex and long 
>> arguments,
>> yes indeed I enter them on the same line, and that's a mess. ;)
>
> thanks for merging the other patches. I could not change your opinion on this
> one then?

Not really, it is too much cosmetic for me ;)

-Anselm



Re: [hackers] [dwm] [PATCH] break up long config line

2016-12-05 Thread Markus Teich
Markus Teich wrote:
> Anselm R Garbe wrote:
> > Why, are you entering command line options also on separate lines?
> 
> Nope, but my command line input mostly is way shorter, because I don't have to
> enter a declaration in front of it and if I have such a special case like
> color schemes, I tend to put them away in a "config" file, e.g. creating an
> alias in `.mkshrc`. In the rare cases where I have complex and long arguments,
> yes indeed I enter them on the same line, and that's a mess. ;)

Heyho Anselm,

thanks for merging the other patches. I could not change your opinion on this
one then?

--Markus



Re: [hackers] [dwm] [PATCH] break up long config line

2016-10-27 Thread Markus Teich
Anselm R Garbe wrote:
> Why, are you entering command line options also on separate lines?

Heyho Anselm,

Nope, but my command line input mostly is way shorter, because I don't have to
enter a declaration in front of it and if I have such a special case like color
schemes, I tend to put them away in a "config" file, e.g. creating an alias in
`.mkshrc`. In the rare cases where I have complex and long arguments, yes indeed
I enter them on the same line, and that's a mess. ;)

--Markus



Re: [hackers] [dwm] [PATCH] break up long config line

2016-10-27 Thread Anselm R Garbe
Why, are you entering command line options also on separate lines?

On 27 October 2016 at 01:42, Markus Teich  wrote:
> ---
>  config.def.h | 8 +++-
>  1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/config.def.h b/config.def.h
> index ba9a240..deb1584 100644
> --- a/config.def.h
> +++ b/config.def.h
> @@ -56,7 +56,13 @@ static const Layout layouts[] = {
>
>  /* commands */
>  static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in 
> spawn() */
> -static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", 
> dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", 
> col_gray4, NULL };
> +static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon,
> +   "-fn", dmenufont,
> +   "-nb", col_gray1,
> +   "-nf", col_gray3,
> +   "-sb", col_cyan,
> +   "-sf", col_gray4,
> +   NULL };
>  static const char *termcmd[]  = { "st", NULL };
>
>  static Key keys[] = {
> --
> 2.7.3
>
>