add 'moveamount' to cwmrc; it sets keyboard movement amount, making

it more useful on large screens
manpage tweak & ok jmc@
ok okan@, oga@
This commit is contained in:
martynas
2009-02-07 21:07:00 +00:00
parent 507b65a27f
commit 17ae65adc5
5 changed files with 90 additions and 30 deletions

View File

@@ -66,7 +66,7 @@ typedef struct {
%token FONTNAME STICKY GAP MOUSEBIND
%token AUTOGROUP BIND COMMAND IGNORE
%token YES NO BORDERWIDTH
%token YES NO BORDERWIDTH MOVEAMOUNT
%token ERROR
%token <v.string> STRING
%token <v.number> NUMBER
@@ -110,6 +110,9 @@ main : FONTNAME STRING {
| BORDERWIDTH NUMBER {
conf->bwidth = $2;
}
| MOVEAMOUNT NUMBER {
conf->mamount = $2;
}
| COMMAND STRING string {
conf_cmd_add(conf, $3, $2, 0);
free($2);
@@ -207,6 +210,7 @@ lookup(char *s)
{ "gap", GAP},
{ "ignore", IGNORE},
{ "mousebind", MOUSEBIND},
{ "moveamount", MOVEAMOUNT},
{ "no", NO},
{ "sticky", STICKY},
{ "yes", YES}
@@ -499,6 +503,7 @@ parse_config(const char *filename, struct conf *xconf)
xconf->flags = conf->flags;
xconf->bwidth = conf->bwidth;
xconf->mamount = conf->mamount;
while ((cmd = TAILQ_FIRST(&conf->cmdq)) != NULL) {
TAILQ_REMOVE(&conf->cmdq, cmd, entry);