2009-09-13 14:16:39 +02:00
|
|
|
|
%{
|
2009-09-27 17:01:06 +02:00
|
|
|
|
/*
|
|
|
|
|
* vim:ts=8:expandtab
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-09-13 14:16:39 +02:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <xcb/xcb.h>
|
2009-09-13 21:32:58 +02:00
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <errno.h>
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
2009-09-13 14:54:27 +02:00
|
|
|
|
#include "data.h"
|
2009-09-13 18:40:35 +02:00
|
|
|
|
#include "config.h"
|
2009-09-13 22:13:28 +02:00
|
|
|
|
#include "i3.h"
|
2009-09-13 21:32:58 +02:00
|
|
|
|
#include "util.h"
|
|
|
|
|
#include "queue.h"
|
2009-09-13 22:13:28 +02:00
|
|
|
|
#include "table.h"
|
2009-09-26 13:30:32 +02:00
|
|
|
|
#include "workspace.h"
|
|
|
|
|
#include "xcb.h"
|
2009-12-19 22:39:00 +01:00
|
|
|
|
#include "log.h"
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
2009-09-29 22:47:37 +02:00
|
|
|
|
typedef struct yy_buffer_state *YY_BUFFER_STATE;
|
2010-02-13 19:42:54 +01:00
|
|
|
|
extern int yylex(struct context *context);
|
2009-09-29 22:47:37 +02:00
|
|
|
|
extern int yyparse(void);
|
2009-09-13 14:54:27 +02:00
|
|
|
|
extern FILE *yyin;
|
2009-09-29 22:47:37 +02:00
|
|
|
|
YY_BUFFER_STATE yy_scan_string(const char *);
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
2009-09-27 17:02:13 +02:00
|
|
|
|
static struct bindings_head *current_bindings;
|
2010-02-13 19:42:54 +01:00
|
|
|
|
static struct context *context;
|
|
|
|
|
|
|
|
|
|
/* We don’t need yydebug for now, as we got decent error messages using
|
|
|
|
|
* yyerror(). Should you ever want to extend the parser, it might be handy
|
|
|
|
|
* to just comment it in again, so it stays here. */
|
|
|
|
|
//int yydebug = 1;
|
|
|
|
|
|
|
|
|
|
void yyerror(const char *error_message) {
|
|
|
|
|
ELOG("\n");
|
|
|
|
|
ELOG("CONFIG: %s\n", error_message);
|
|
|
|
|
ELOG("CONFIG: in file \"%s\", line %d:\n",
|
|
|
|
|
context->filename, context->line_number);
|
|
|
|
|
ELOG("CONFIG: %s\n", context->line_copy);
|
|
|
|
|
ELOG("CONFIG: ");
|
|
|
|
|
for (int c = 1; c <= context->last_column; c++)
|
|
|
|
|
if (c >= context->first_column)
|
|
|
|
|
printf("^");
|
|
|
|
|
else printf(" ");
|
|
|
|
|
printf("\n");
|
|
|
|
|
ELOG("\n");
|
2009-09-13 14:16:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2009-09-13 14:54:27 +02:00
|
|
|
|
int yywrap() {
|
2009-09-13 14:16:39 +02:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-13 14:54:27 +02:00
|
|
|
|
void parse_file(const char *f) {
|
2009-09-13 21:32:58 +02:00
|
|
|
|
SLIST_HEAD(variables_head, Variable) variables = SLIST_HEAD_INITIALIZER(&variables);
|
|
|
|
|
int fd, ret, read_bytes = 0;
|
|
|
|
|
struct stat stbuf;
|
|
|
|
|
char *buf;
|
|
|
|
|
FILE *fstr;
|
|
|
|
|
char buffer[1026], key[512], value[512];
|
|
|
|
|
|
|
|
|
|
if ((fd = open(f, O_RDONLY)) == -1)
|
|
|
|
|
die("Could not open configuration file: %s\n", strerror(errno));
|
|
|
|
|
|
|
|
|
|
if (fstat(fd, &stbuf) == -1)
|
|
|
|
|
die("Could not fstat file: %s\n", strerror(errno));
|
|
|
|
|
|
2010-03-26 03:04:54 +01:00
|
|
|
|
buf = scalloc((stbuf.st_size + 1) * sizeof(char));
|
2009-09-13 21:32:58 +02:00
|
|
|
|
while (read_bytes < stbuf.st_size) {
|
|
|
|
|
if ((ret = read(fd, buf + read_bytes, (stbuf.st_size - read_bytes))) < 0)
|
|
|
|
|
die("Could not read(): %s\n", strerror(errno));
|
|
|
|
|
read_bytes += ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (lseek(fd, 0, SEEK_SET) == (off_t)-1)
|
|
|
|
|
die("Could not lseek: %s\n", strerror(errno));
|
|
|
|
|
|
|
|
|
|
if ((fstr = fdopen(fd, "r")) == NULL)
|
|
|
|
|
die("Could not fdopen: %s\n", strerror(errno));
|
|
|
|
|
|
|
|
|
|
while (!feof(fstr)) {
|
|
|
|
|
if (fgets(buffer, 1024, fstr) == NULL) {
|
|
|
|
|
if (feof(fstr))
|
|
|
|
|
break;
|
|
|
|
|
die("Could not read configuration file\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* sscanf implicitly strips whitespace. Also, we skip comments and empty lines. */
|
|
|
|
|
if (sscanf(buffer, "%s %[^\n]", key, value) < 1 ||
|
|
|
|
|
key[0] == '#' || strlen(key) < 3)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (strcasecmp(key, "set") == 0) {
|
|
|
|
|
if (value[0] != '$')
|
|
|
|
|
die("Malformed variable assignment, name has to start with $\n");
|
|
|
|
|
|
|
|
|
|
/* get key/value for this variable */
|
|
|
|
|
char *v_key = value, *v_value;
|
|
|
|
|
if ((v_value = strstr(value, " ")) == NULL)
|
|
|
|
|
die("Malformed variable assignment, need a value\n");
|
|
|
|
|
|
|
|
|
|
*(v_value++) = '\0';
|
|
|
|
|
|
|
|
|
|
struct Variable *new = scalloc(sizeof(struct Variable));
|
|
|
|
|
new->key = sstrdup(v_key);
|
|
|
|
|
new->value = sstrdup(v_value);
|
|
|
|
|
SLIST_INSERT_HEAD(&variables, new, variables);
|
2009-12-19 22:39:00 +01:00
|
|
|
|
DLOG("Got new variable %s = %s\n", v_key, v_value);
|
2009-09-13 21:32:58 +02:00
|
|
|
|
continue;
|
|
|
|
|
}
|
2009-09-13 18:40:35 +02:00
|
|
|
|
}
|
2009-09-13 21:32:58 +02:00
|
|
|
|
|
|
|
|
|
/* For every custom variable, see how often it occurs in the file and
|
|
|
|
|
* how much extra bytes it requires when replaced. */
|
|
|
|
|
struct Variable *current, *nearest;
|
|
|
|
|
int extra_bytes = 0;
|
|
|
|
|
SLIST_FOREACH(current, &variables, variables) {
|
|
|
|
|
int extra = (strlen(current->value) - strlen(current->key));
|
|
|
|
|
char *next;
|
|
|
|
|
for (next = buf;
|
|
|
|
|
(next = strcasestr(buf + (next - buf), current->key)) != NULL;
|
|
|
|
|
next += strlen(current->key))
|
|
|
|
|
extra_bytes += extra;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Then, allocate a new buffer and copy the file over to the new one,
|
|
|
|
|
* but replace occurences of our variables */
|
|
|
|
|
char *walk = buf, *destwalk;
|
2009-09-29 19:45:41 +02:00
|
|
|
|
char *new = smalloc((stbuf.st_size + extra_bytes + 1) * sizeof(char));
|
2009-09-13 21:32:58 +02:00
|
|
|
|
destwalk = new;
|
|
|
|
|
while (walk < (buf + stbuf.st_size)) {
|
|
|
|
|
/* Find the next variable */
|
|
|
|
|
SLIST_FOREACH(current, &variables, variables)
|
|
|
|
|
current->next_match = strcasestr(walk, current->key);
|
|
|
|
|
nearest = NULL;
|
|
|
|
|
int distance = stbuf.st_size;
|
|
|
|
|
SLIST_FOREACH(current, &variables, variables) {
|
|
|
|
|
if (current->next_match == NULL)
|
|
|
|
|
continue;
|
|
|
|
|
if ((current->next_match - walk) < distance) {
|
|
|
|
|
distance = (current->next_match - walk);
|
|
|
|
|
nearest = current;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (nearest == NULL) {
|
|
|
|
|
/* If there are no more variables, we just copy the rest */
|
|
|
|
|
strncpy(destwalk, walk, (buf + stbuf.st_size) - walk);
|
|
|
|
|
destwalk += (buf + stbuf.st_size) - walk;
|
|
|
|
|
*destwalk = '\0';
|
|
|
|
|
break;
|
|
|
|
|
} else {
|
|
|
|
|
/* Copy until the next variable, then copy its value */
|
|
|
|
|
strncpy(destwalk, walk, distance);
|
|
|
|
|
strncpy(destwalk + distance, nearest->value, strlen(nearest->value));
|
|
|
|
|
walk += distance + strlen(nearest->key);
|
|
|
|
|
destwalk += distance + strlen(nearest->value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
yy_scan_string(new);
|
|
|
|
|
|
2010-02-13 19:42:54 +01:00
|
|
|
|
context = scalloc(sizeof(struct context));
|
|
|
|
|
context->filename = f;
|
|
|
|
|
|
2009-09-13 18:40:35 +02:00
|
|
|
|
if (yyparse() != 0) {
|
|
|
|
|
fprintf(stderr, "Could not parse configfile\n");
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
2009-09-13 14:54:27 +02:00
|
|
|
|
|
2010-02-13 19:42:54 +01:00
|
|
|
|
FREE(context->line_copy);
|
|
|
|
|
free(context);
|
2009-09-13 21:32:58 +02:00
|
|
|
|
free(new);
|
|
|
|
|
free(buf);
|
2010-03-26 01:52:39 +01:00
|
|
|
|
|
|
|
|
|
while (!SLIST_EMPTY(&variables)) {
|
|
|
|
|
current = SLIST_FIRST(&variables);
|
|
|
|
|
FREE(current->key);
|
|
|
|
|
FREE(current->value);
|
|
|
|
|
SLIST_REMOVE_HEAD(&variables, variables);
|
|
|
|
|
FREE(current);
|
|
|
|
|
}
|
2010-05-24 00:06:26 +02:00
|
|
|
|
fclose(fstr);
|
|
|
|
|
close(fd);
|
2009-09-13 14:16:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%}
|
|
|
|
|
|
2009-11-09 22:36:26 +01:00
|
|
|
|
%expect 1
|
2010-02-13 15:27:43 +01:00
|
|
|
|
%error-verbose
|
2010-02-13 19:42:54 +01:00
|
|
|
|
%lex-param { struct context *context }
|
2009-11-09 22:36:26 +01:00
|
|
|
|
|
2009-09-13 14:16:39 +02:00
|
|
|
|
%union {
|
2009-09-13 18:40:35 +02:00
|
|
|
|
int number;
|
|
|
|
|
char *string;
|
|
|
|
|
struct Colortriple *color;
|
2009-09-27 17:02:13 +02:00
|
|
|
|
struct Assignment *assignment;
|
|
|
|
|
struct Binding *binding;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-02-13 15:27:43 +01:00
|
|
|
|
%token <number>NUMBER "<number>"
|
|
|
|
|
%token <string>WORD "<word>"
|
|
|
|
|
%token <string>STR "<string>"
|
|
|
|
|
%token <string>STR_NG "<string (non-greedy)>"
|
|
|
|
|
%token <string>HEX "<hex>"
|
2010-03-02 13:35:43 +01:00
|
|
|
|
%token <string>OUTPUT "<RandR output>"
|
2009-09-13 14:16:39 +02:00
|
|
|
|
%token TOKBIND
|
2009-09-13 14:54:27 +02:00
|
|
|
|
%token TOKTERMINAL
|
2010-02-13 15:27:43 +01:00
|
|
|
|
%token TOKCOMMENT "<comment>"
|
|
|
|
|
%token TOKFONT "font"
|
|
|
|
|
%token TOKBINDSYM "bindsym"
|
|
|
|
|
%token MODIFIER "<modifier>"
|
|
|
|
|
%token TOKCONTROL "control"
|
|
|
|
|
%token TOKSHIFT "shift"
|
|
|
|
|
%token WHITESPACE "<whitespace>"
|
|
|
|
|
%token TOKFLOATING_MODIFIER "floating_modifier"
|
|
|
|
|
%token QUOTEDSTRING "<quoted string>"
|
|
|
|
|
%token TOKWORKSPACE "workspace"
|
2010-03-02 13:35:43 +01:00
|
|
|
|
%token TOKOUTPUT "output"
|
2010-02-13 15:27:43 +01:00
|
|
|
|
%token TOKASSIGN "assign"
|
2009-09-13 14:16:39 +02:00
|
|
|
|
%token TOKSET
|
2010-02-13 15:27:43 +01:00
|
|
|
|
%token TOKIPCSOCKET "ipc_socket"
|
|
|
|
|
%token TOKEXEC "exec"
|
2009-09-13 14:16:39 +02:00
|
|
|
|
%token TOKCOLOR
|
2010-02-13 15:27:43 +01:00
|
|
|
|
%token TOKARROW "→"
|
|
|
|
|
%token TOKMODE "mode"
|
|
|
|
|
%token TOKNEWCONTAINER "new_container"
|
|
|
|
|
%token TOKNEWWINDOW "new_window"
|
|
|
|
|
%token TOKFOCUSFOLLOWSMOUSE "focus_follows_mouse"
|
2010-03-13 19:15:28 +01:00
|
|
|
|
%token TOKWORKSPACEBAR "workspace_bar"
|
2010-02-13 15:27:43 +01:00
|
|
|
|
%token TOKCONTAINERMODE "default/stacking/tabbed"
|
|
|
|
|
%token TOKSTACKLIMIT "stack-limit"
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
|
|
%%
|
|
|
|
|
|
|
|
|
|
lines: /* empty */
|
|
|
|
|
| lines WHITESPACE line
|
2010-02-14 16:59:22 +01:00
|
|
|
|
| lines error
|
2009-09-13 18:40:35 +02:00
|
|
|
|
| lines line
|
2009-09-13 14:16:39 +02:00
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
line:
|
2009-09-27 17:02:13 +02:00
|
|
|
|
bindline
|
|
|
|
|
| mode
|
2009-09-13 18:40:35 +02:00
|
|
|
|
| floating_modifier
|
2009-09-27 23:08:27 +02:00
|
|
|
|
| new_container
|
2009-11-08 12:43:01 +01:00
|
|
|
|
| new_window
|
2010-01-26 12:10:48 +01:00
|
|
|
|
| focus_follows_mouse
|
2010-03-13 19:15:28 +01:00
|
|
|
|
| workspace_bar
|
2009-09-13 18:40:35 +02:00
|
|
|
|
| workspace
|
|
|
|
|
| assign
|
|
|
|
|
| ipcsocket
|
|
|
|
|
| exec
|
|
|
|
|
| color
|
|
|
|
|
| terminal
|
|
|
|
|
| font
|
|
|
|
|
| comment
|
2009-09-13 14:16:39 +02:00
|
|
|
|
;
|
|
|
|
|
|
2009-09-13 14:54:27 +02:00
|
|
|
|
comment:
|
2009-09-13 18:40:35 +02:00
|
|
|
|
TOKCOMMENT
|
|
|
|
|
;
|
2009-09-13 14:54:27 +02:00
|
|
|
|
|
2009-09-13 14:16:39 +02:00
|
|
|
|
command:
|
2009-09-13 18:40:35 +02:00
|
|
|
|
STR
|
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
2009-09-27 17:02:13 +02:00
|
|
|
|
bindline:
|
|
|
|
|
binding
|
|
|
|
|
{
|
2009-09-27 18:45:39 +02:00
|
|
|
|
TAILQ_INSERT_TAIL(bindings, $<binding>1, bindings);
|
2009-09-27 17:02:13 +02:00
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
binding:
|
|
|
|
|
TOKBIND WHITESPACE bind { $<binding>$ = $<binding>3; }
|
|
|
|
|
| TOKBINDSYM WHITESPACE bindsym { $<binding>$ = $<binding>3; }
|
|
|
|
|
;
|
|
|
|
|
|
2009-09-13 14:16:39 +02:00
|
|
|
|
bind:
|
2009-09-27 17:02:13 +02:00
|
|
|
|
binding_modifiers NUMBER WHITESPACE command
|
2009-09-13 14:16:39 +02:00
|
|
|
|
{
|
2009-09-27 17:02:13 +02:00
|
|
|
|
printf("\tFound binding mod%d with key %d and command %s\n", $<number>1, $2, $<string>4);
|
2009-09-13 22:13:28 +02:00
|
|
|
|
Binding *new = scalloc(sizeof(Binding));
|
|
|
|
|
|
2009-09-27 17:02:13 +02:00
|
|
|
|
new->keycode = $<number>2;
|
|
|
|
|
new->mods = $<number>1;
|
2010-03-26 01:52:39 +01:00
|
|
|
|
new->command = $<string>4;
|
2009-09-13 22:13:28 +02:00
|
|
|
|
|
2009-09-27 17:02:13 +02:00
|
|
|
|
$<binding>$ = new;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
bindsym:
|
2009-09-29 11:32:57 +02:00
|
|
|
|
binding_modifiers word_or_number WHITESPACE command
|
2009-09-13 14:16:39 +02:00
|
|
|
|
{
|
2009-09-29 11:32:57 +02:00
|
|
|
|
printf("\tFound symbolic mod%d with key %s and command %s\n", $<number>1, $<string>2, $<string>4);
|
2009-09-13 22:13:28 +02:00
|
|
|
|
Binding *new = scalloc(sizeof(Binding));
|
|
|
|
|
|
2010-03-26 01:52:39 +01:00
|
|
|
|
new->symbol = $<string>2;
|
2009-09-27 17:02:13 +02:00
|
|
|
|
new->mods = $<number>1;
|
2010-03-26 01:52:39 +01:00
|
|
|
|
new->command = $<string>4;
|
2009-09-27 17:02:13 +02:00
|
|
|
|
|
|
|
|
|
$<binding>$ = new;
|
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
2009-09-29 11:32:57 +02:00
|
|
|
|
word_or_number:
|
|
|
|
|
WORD
|
|
|
|
|
| NUMBER
|
|
|
|
|
{
|
|
|
|
|
asprintf(&$<string>$, "%d", $1);
|
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
2009-09-27 17:02:13 +02:00
|
|
|
|
mode:
|
2009-11-06 17:19:01 +01:00
|
|
|
|
TOKMODE WHITESPACE QUOTEDSTRING WHITESPACE '{' modelines '}'
|
2009-09-27 17:02:13 +02:00
|
|
|
|
{
|
2009-09-27 18:45:39 +02:00
|
|
|
|
if (strcasecmp($<string>3, "default") == 0) {
|
|
|
|
|
printf("You cannot use the name \"default\" for your mode\n");
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
2009-09-27 17:02:13 +02:00
|
|
|
|
printf("\t now in mode %s\n", $<string>3);
|
|
|
|
|
printf("\t current bindings = %p\n", current_bindings);
|
2009-09-27 18:45:39 +02:00
|
|
|
|
Binding *binding;
|
|
|
|
|
TAILQ_FOREACH(binding, current_bindings, bindings) {
|
|
|
|
|
printf("got binding on mods %d, keycode %d, symbol %s, command %s\n",
|
|
|
|
|
binding->mods, binding->keycode, binding->symbol, binding->command);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct Mode *mode = scalloc(sizeof(struct Mode));
|
2010-03-26 01:52:39 +01:00
|
|
|
|
mode->name = $<string>3;
|
2009-09-27 18:45:39 +02:00
|
|
|
|
mode->bindings = current_bindings;
|
|
|
|
|
current_bindings = NULL;
|
|
|
|
|
SLIST_INSERT_HEAD(&modes, mode, modes);
|
2009-09-27 17:02:13 +02:00
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
2009-11-06 15:42:03 +01:00
|
|
|
|
|
2009-09-27 17:02:13 +02:00
|
|
|
|
modelines:
|
|
|
|
|
/* empty */
|
|
|
|
|
| modelines modeline
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
modeline:
|
2009-11-06 17:19:01 +01:00
|
|
|
|
WHITESPACE
|
|
|
|
|
| comment
|
2009-09-27 17:02:13 +02:00
|
|
|
|
| binding
|
|
|
|
|
{
|
|
|
|
|
if (current_bindings == NULL) {
|
|
|
|
|
current_bindings = scalloc(sizeof(struct bindings_head));
|
|
|
|
|
TAILQ_INIT(current_bindings);
|
|
|
|
|
}
|
2009-09-13 22:13:28 +02:00
|
|
|
|
|
2009-09-27 17:02:13 +02:00
|
|
|
|
TAILQ_INSERT_TAIL(current_bindings, $<binding>1, bindings);
|
2009-09-13 14:16:39 +02:00
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
floating_modifier:
|
2009-09-13 18:40:35 +02:00
|
|
|
|
TOKFLOATING_MODIFIER WHITESPACE binding_modifiers
|
|
|
|
|
{
|
2009-12-19 22:39:00 +01:00
|
|
|
|
DLOG("floating modifier = %d\n", $<number>3);
|
2009-09-13 22:13:28 +02:00
|
|
|
|
config.floating_modifier = $<number>3;
|
2009-09-13 18:40:35 +02:00
|
|
|
|
}
|
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
2009-09-27 23:08:27 +02:00
|
|
|
|
new_container:
|
|
|
|
|
TOKNEWCONTAINER WHITESPACE TOKCONTAINERMODE
|
|
|
|
|
{
|
2009-12-19 22:39:00 +01:00
|
|
|
|
DLOG("new containers will be in mode %d\n", $<number>3);
|
2009-09-27 23:08:27 +02:00
|
|
|
|
config.container_mode = $<number>3;
|
|
|
|
|
|
|
|
|
|
/* We also need to change the layout of the already existing
|
|
|
|
|
* workspaces here. Workspaces may exist at this point because
|
|
|
|
|
* of the other directives which are modifying workspaces
|
|
|
|
|
* (setting the preferred screen or name). While the workspace
|
|
|
|
|
* objects are already created, they have never been used.
|
|
|
|
|
* Thus, the user very likely awaits the default container mode
|
|
|
|
|
* to trigger in this case, regardless of where it is inside
|
|
|
|
|
* his configuration file. */
|
2009-09-29 19:45:41 +02:00
|
|
|
|
Workspace *ws;
|
|
|
|
|
TAILQ_FOREACH(ws, workspaces, workspaces) {
|
|
|
|
|
if (ws->table == NULL)
|
2009-09-27 23:08:27 +02:00
|
|
|
|
continue;
|
|
|
|
|
switch_layout_mode(global_conn,
|
2009-09-29 19:45:41 +02:00
|
|
|
|
ws->table[0][0],
|
2009-09-27 23:08:27 +02:00
|
|
|
|
config.container_mode);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
| TOKNEWCONTAINER WHITESPACE TOKSTACKLIMIT WHITESPACE TOKSTACKLIMIT WHITESPACE NUMBER
|
|
|
|
|
{
|
2009-12-19 22:39:00 +01:00
|
|
|
|
DLOG("stack-limit %d with val %d\n", $<number>5, $<number>7);
|
2009-09-27 23:08:27 +02:00
|
|
|
|
config.container_stack_limit = $<number>5;
|
|
|
|
|
config.container_stack_limit_value = $<number>7;
|
|
|
|
|
|
|
|
|
|
/* See the comment above */
|
2009-09-29 19:45:41 +02:00
|
|
|
|
Workspace *ws;
|
|
|
|
|
TAILQ_FOREACH(ws, workspaces, workspaces) {
|
|
|
|
|
if (ws->table == NULL)
|
2009-09-27 23:08:27 +02:00
|
|
|
|
continue;
|
2009-09-29 19:45:41 +02:00
|
|
|
|
Container *con = ws->table[0][0];
|
2009-09-27 23:08:27 +02:00
|
|
|
|
con->stack_limit = config.container_stack_limit;
|
|
|
|
|
con->stack_limit_value = config.container_stack_limit_value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
2009-11-08 12:43:01 +01:00
|
|
|
|
new_window:
|
|
|
|
|
TOKNEWWINDOW WHITESPACE WORD
|
|
|
|
|
{
|
2009-12-19 22:39:00 +01:00
|
|
|
|
DLOG("new windows should start in mode %s\n", $<string>3);
|
2010-03-26 01:52:39 +01:00
|
|
|
|
config.default_border = sstrdup($<string>3);
|
2009-11-08 12:43:01 +01:00
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
2010-01-29 21:51:38 +01:00
|
|
|
|
bool:
|
|
|
|
|
NUMBER
|
|
|
|
|
{
|
|
|
|
|
$<number>$ = ($<number>1 == 1);
|
|
|
|
|
}
|
|
|
|
|
| WORD
|
|
|
|
|
{
|
|
|
|
|
DLOG("checking word \"%s\"\n", $<string>1);
|
|
|
|
|
$<number>$ = (strcasecmp($<string>1, "yes") == 0 ||
|
|
|
|
|
strcasecmp($<string>1, "true") == 0 ||
|
|
|
|
|
strcasecmp($<string>1, "on") == 0 ||
|
|
|
|
|
strcasecmp($<string>1, "enable") == 0 ||
|
|
|
|
|
strcasecmp($<string>1, "active") == 0);
|
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
2010-01-26 12:10:48 +01:00
|
|
|
|
focus_follows_mouse:
|
2010-01-29 21:51:38 +01:00
|
|
|
|
TOKFOCUSFOLLOWSMOUSE WHITESPACE bool
|
2010-01-26 12:10:48 +01:00
|
|
|
|
{
|
2010-01-29 21:51:38 +01:00
|
|
|
|
DLOG("focus follows mouse = %d\n", $<number>3);
|
|
|
|
|
config.disable_focus_follows_mouse = !($<number>3);
|
2010-01-26 12:10:48 +01:00
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
2010-03-13 19:15:28 +01:00
|
|
|
|
workspace_bar:
|
|
|
|
|
TOKWORKSPACEBAR WHITESPACE bool
|
|
|
|
|
{
|
|
|
|
|
DLOG("workspace bar = %d\n", $<number>3);
|
|
|
|
|
config.disable_workspace_bar = !($<number>3);
|
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
2009-09-13 14:16:39 +02:00
|
|
|
|
workspace:
|
2010-03-02 13:35:43 +01:00
|
|
|
|
TOKWORKSPACE WHITESPACE NUMBER WHITESPACE TOKOUTPUT WHITESPACE OUTPUT optional_workspace_name
|
2009-09-13 18:40:35 +02:00
|
|
|
|
{
|
2009-09-13 22:13:28 +02:00
|
|
|
|
int ws_num = $<number>3;
|
2009-09-27 23:05:07 +02:00
|
|
|
|
if (ws_num < 1) {
|
2009-12-19 22:39:00 +01:00
|
|
|
|
DLOG("Invalid workspace assignment, workspace number %d out of range\n", ws_num);
|
2009-09-13 22:13:28 +02:00
|
|
|
|
} else {
|
2009-09-27 23:05:07 +02:00
|
|
|
|
Workspace *ws = workspace_get(ws_num - 1);
|
2010-03-26 01:52:39 +01:00
|
|
|
|
ws->preferred_output = $<string>7;
|
|
|
|
|
if ($<string>8 != NULL) {
|
2009-09-27 23:05:07 +02:00
|
|
|
|
workspace_set_name(ws, $<string>8);
|
2010-03-26 01:52:39 +01:00
|
|
|
|
free($<string>8);
|
|
|
|
|
}
|
2009-09-13 22:13:28 +02:00
|
|
|
|
}
|
2009-09-13 18:40:35 +02:00
|
|
|
|
}
|
2009-11-06 17:26:17 +01:00
|
|
|
|
| TOKWORKSPACE WHITESPACE NUMBER WHITESPACE workspace_name
|
2009-09-27 17:02:05 +02:00
|
|
|
|
{
|
2009-09-19 19:39:06 +02:00
|
|
|
|
int ws_num = $<number>3;
|
2009-09-27 23:05:07 +02:00
|
|
|
|
if (ws_num < 1) {
|
2009-12-19 22:39:00 +01:00
|
|
|
|
DLOG("Invalid workspace assignment, workspace number %d out of range\n", ws_num);
|
2009-09-19 19:39:06 +02:00
|
|
|
|
} else {
|
2010-03-02 13:35:43 +01:00
|
|
|
|
DLOG("workspace name to: %s\n", $<string>5);
|
2010-03-26 01:52:39 +01:00
|
|
|
|
if ($<string>5 != NULL) {
|
2009-11-07 16:51:10 +01:00
|
|
|
|
workspace_set_name(workspace_get(ws_num - 1), $<string>5);
|
2010-03-26 01:52:39 +01:00
|
|
|
|
free($<string>5);
|
|
|
|
|
}
|
2009-09-27 17:02:05 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2009-09-13 18:40:35 +02:00
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
2009-11-06 17:26:17 +01:00
|
|
|
|
optional_workspace_name:
|
|
|
|
|
/* empty */ { $<string>$ = NULL; }
|
2009-11-09 22:36:26 +01:00
|
|
|
|
| WHITESPACE workspace_name { $<string>$ = $<string>2; }
|
2009-11-06 17:26:17 +01:00
|
|
|
|
;
|
|
|
|
|
|
2009-09-13 18:40:35 +02:00
|
|
|
|
workspace_name:
|
2009-11-06 17:26:17 +01:00
|
|
|
|
QUOTEDSTRING { $<string>$ = $<string>1; }
|
|
|
|
|
| STR { $<string>$ = $<string>1; }
|
2009-11-18 19:53:57 +01:00
|
|
|
|
| WORD { $<string>$ = $<string>1; }
|
2009-09-13 18:40:35 +02:00
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
|
|
assign:
|
2009-09-19 19:05:15 +02:00
|
|
|
|
TOKASSIGN WHITESPACE window_class WHITESPACE optional_arrow assign_target
|
2009-09-13 18:40:35 +02:00
|
|
|
|
{
|
2009-10-23 22:57:35 +02:00
|
|
|
|
printf("assignment of %s\n", $<string>3);
|
2009-09-19 19:05:15 +02:00
|
|
|
|
|
2009-09-27 17:02:05 +02:00
|
|
|
|
struct Assignment *new = $<assignment>6;
|
2009-10-23 22:57:35 +02:00
|
|
|
|
printf(" to %d\n", new->workspace);
|
|
|
|
|
printf(" floating = %d\n", new->floating);
|
2010-03-26 01:52:39 +01:00
|
|
|
|
new->windowclass_title = $<string>3;
|
2009-09-27 17:02:05 +02:00
|
|
|
|
TAILQ_INSERT_TAIL(&assignments, new, assignments);
|
2009-09-13 18:40:35 +02:00
|
|
|
|
}
|
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
2009-09-19 19:05:15 +02:00
|
|
|
|
assign_target:
|
2009-09-27 17:02:05 +02:00
|
|
|
|
NUMBER
|
|
|
|
|
{
|
|
|
|
|
struct Assignment *new = scalloc(sizeof(struct Assignment));
|
|
|
|
|
new->workspace = $<number>1;
|
|
|
|
|
new->floating = ASSIGN_FLOATING_NO;
|
|
|
|
|
$<assignment>$ = new;
|
|
|
|
|
}
|
|
|
|
|
| '~'
|
|
|
|
|
{
|
|
|
|
|
struct Assignment *new = scalloc(sizeof(struct Assignment));
|
|
|
|
|
new->floating = ASSIGN_FLOATING_ONLY;
|
|
|
|
|
$<assignment>$ = new;
|
|
|
|
|
}
|
|
|
|
|
| '~' NUMBER
|
|
|
|
|
{
|
|
|
|
|
struct Assignment *new = scalloc(sizeof(struct Assignment));
|
|
|
|
|
new->workspace = $<number>2;
|
|
|
|
|
new->floating = ASSIGN_FLOATING;
|
|
|
|
|
$<assignment>$ = new;
|
|
|
|
|
}
|
|
|
|
|
;
|
2009-09-19 19:05:15 +02:00
|
|
|
|
|
2009-09-13 14:16:39 +02:00
|
|
|
|
window_class:
|
2009-09-13 18:40:35 +02:00
|
|
|
|
QUOTEDSTRING
|
|
|
|
|
| STR_NG
|
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
|
|
optional_arrow:
|
2009-09-13 18:40:35 +02:00
|
|
|
|
/* NULL */
|
|
|
|
|
| TOKARROW WHITESPACE
|
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
|
|
ipcsocket:
|
2009-09-13 18:40:35 +02:00
|
|
|
|
TOKIPCSOCKET WHITESPACE STR
|
|
|
|
|
{
|
2010-03-26 01:52:39 +01:00
|
|
|
|
config.ipc_socket_path = $<string>3;
|
2009-09-13 18:40:35 +02:00
|
|
|
|
}
|
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
|
|
exec:
|
2009-09-13 18:40:35 +02:00
|
|
|
|
TOKEXEC WHITESPACE STR
|
|
|
|
|
{
|
2009-09-13 22:13:28 +02:00
|
|
|
|
struct Autostart *new = smalloc(sizeof(struct Autostart));
|
2010-03-26 01:52:39 +01:00
|
|
|
|
new->command = $<string>3;
|
2009-09-13 22:13:28 +02:00
|
|
|
|
TAILQ_INSERT_TAIL(&autostarts, new, autostarts);
|
2009-09-13 18:40:35 +02:00
|
|
|
|
}
|
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
2009-09-13 14:54:27 +02:00
|
|
|
|
terminal:
|
2009-09-13 18:40:35 +02:00
|
|
|
|
TOKTERMINAL WHITESPACE STR
|
|
|
|
|
{
|
2010-02-16 19:25:07 +01:00
|
|
|
|
ELOG("The terminal option is DEPRECATED and has no effect. "
|
2010-02-16 19:55:04 +01:00
|
|
|
|
"Please remove it from your configuration file.\n");
|
2009-09-13 18:40:35 +02:00
|
|
|
|
}
|
|
|
|
|
;
|
2009-09-13 14:54:27 +02:00
|
|
|
|
|
|
|
|
|
font:
|
2009-09-13 18:40:35 +02:00
|
|
|
|
TOKFONT WHITESPACE STR
|
|
|
|
|
{
|
2010-03-26 01:52:39 +01:00
|
|
|
|
config.font = $<string>3;
|
2009-09-13 22:13:28 +02:00
|
|
|
|
printf("font %s\n", config.font);
|
2009-09-13 18:40:35 +02:00
|
|
|
|
}
|
|
|
|
|
;
|
2009-09-13 14:54:27 +02:00
|
|
|
|
|
|
|
|
|
|
2009-09-13 14:16:39 +02:00
|
|
|
|
color:
|
2009-09-13 22:13:28 +02:00
|
|
|
|
TOKCOLOR WHITESPACE colorpixel WHITESPACE colorpixel WHITESPACE colorpixel
|
2009-09-13 18:40:35 +02:00
|
|
|
|
{
|
2009-09-13 22:13:28 +02:00
|
|
|
|
struct Colortriple *dest = $<color>1;
|
|
|
|
|
|
|
|
|
|
dest->border = $<number>3;
|
|
|
|
|
dest->background = $<number>5;
|
|
|
|
|
dest->text = $<number>7;
|
2009-09-13 18:40:35 +02:00
|
|
|
|
}
|
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
2009-09-13 22:13:28 +02:00
|
|
|
|
colorpixel:
|
2009-10-01 12:29:27 +02:00
|
|
|
|
'#' HEX
|
|
|
|
|
{
|
|
|
|
|
char *hex;
|
|
|
|
|
if (asprintf(&hex, "#%s", $<string>2) == -1)
|
|
|
|
|
die("asprintf()");
|
|
|
|
|
$<number>$ = get_colorpixel(global_conn, hex);
|
|
|
|
|
free(hex);
|
|
|
|
|
}
|
2009-09-13 22:13:28 +02:00
|
|
|
|
;
|
|
|
|
|
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
|
|
binding_modifiers:
|
2009-09-13 18:40:35 +02:00
|
|
|
|
/* NULL */ { $<number>$ = 0; }
|
|
|
|
|
| binding_modifier
|
|
|
|
|
| binding_modifiers '+' binding_modifier { $<number>$ = $<number>1 | $<number>3; }
|
|
|
|
|
| binding_modifiers '+' { $<number>$ = $<number>1; }
|
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
|
|
binding_modifier:
|
2009-09-13 18:40:35 +02:00
|
|
|
|
MODIFIER { $<number>$ = $<number>1; }
|
|
|
|
|
| TOKCONTROL { $<number>$ = BIND_CONTROL; }
|
|
|
|
|
| TOKSHIFT { $<number>$ = BIND_SHIFT; }
|
|
|
|
|
;
|