2015-08-06 12:40:38 +10:00
|
|
|
#include <xkbcommon/xkbcommon.h>
|
|
|
|
#include <xkbcommon/xkbcommon-names.h>
|
2015-08-09 09:24:18 +10:00
|
|
|
#include <wlc/wlc.h>
|
2015-08-06 12:10:56 +10:00
|
|
|
#include <stdio.h>
|
2015-08-06 07:30:40 +10:00
|
|
|
#include <stdlib.h>
|
2015-08-19 07:53:57 +10:00
|
|
|
#include <errno.h>
|
2015-08-06 07:30:40 +10:00
|
|
|
#include <string.h>
|
2015-09-18 21:27:35 +10:00
|
|
|
#include <strings.h>
|
2015-08-10 02:26:32 +10:00
|
|
|
#include <unistd.h>
|
2015-08-06 07:30:40 +10:00
|
|
|
#include <ctype.h>
|
2015-11-20 10:25:15 +11:00
|
|
|
#include <wordexp.h>
|
2015-09-18 21:16:20 +10:00
|
|
|
#include <sys/types.h>
|
2015-10-09 02:12:31 +11:00
|
|
|
#include <sys/wait.h>
|
2016-01-17 21:53:37 +11:00
|
|
|
#include <limits.h>
|
|
|
|
#include <float.h>
|
|
|
|
#include <libinput.h>
|
2015-08-06 07:30:40 +10:00
|
|
|
#include "stringop.h"
|
2015-08-10 04:35:59 +10:00
|
|
|
#include "layout.h"
|
2015-08-18 17:28:44 +10:00
|
|
|
#include "focus.h"
|
2015-08-09 07:01:22 +10:00
|
|
|
#include "log.h"
|
2015-12-15 02:24:01 +11:00
|
|
|
#include "util.h"
|
2015-08-11 06:31:23 +10:00
|
|
|
#include "workspace.h"
|
2015-08-06 07:30:40 +10:00
|
|
|
#include "commands.h"
|
2015-08-17 02:54:37 +10:00
|
|
|
#include "container.h"
|
2015-10-24 12:31:54 +11:00
|
|
|
#include "output.h"
|
2015-08-17 15:38:34 +10:00
|
|
|
#include "handlers.h"
|
2015-08-20 23:12:34 +10:00
|
|
|
#include "sway.h"
|
2015-08-22 13:26:11 +10:00
|
|
|
#include "resize.h"
|
2015-10-26 22:20:32 +11:00
|
|
|
#include "input_state.h"
|
2015-11-18 05:27:01 +11:00
|
|
|
#include "criteria.h"
|
2015-12-22 01:31:09 +11:00
|
|
|
#include "ipc-server.h"
|
2016-01-17 21:53:37 +11:00
|
|
|
#include "list.h"
|
|
|
|
#include "input.h"
|
2016-03-29 23:47:30 +11:00
|
|
|
#include "border.h"
|
2015-08-06 07:30:40 +10:00
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
typedef struct cmd_results *sway_cmd(int argc, char **argv);
|
2015-09-15 12:59:25 +10:00
|
|
|
|
|
|
|
struct cmd_handler {
|
|
|
|
char *command;
|
|
|
|
sway_cmd *handle;
|
|
|
|
};
|
|
|
|
|
2016-01-15 16:03:34 +11:00
|
|
|
static sway_cmd cmd_assign;
|
2015-12-14 12:39:24 +11:00
|
|
|
static sway_cmd cmd_bar;
|
2016-01-10 03:40:19 +11:00
|
|
|
static sway_cmd cmd_bindcode;
|
2015-09-15 12:59:25 +10:00
|
|
|
static sway_cmd cmd_bindsym;
|
2016-03-29 23:40:25 +11:00
|
|
|
static sway_cmd cmd_border;
|
2015-10-26 23:41:45 +11:00
|
|
|
static sway_cmd cmd_debuglog;
|
2015-09-15 12:59:25 +10:00
|
|
|
static sway_cmd cmd_exec;
|
|
|
|
static sway_cmd cmd_exec_always;
|
|
|
|
static sway_cmd cmd_exit;
|
|
|
|
static sway_cmd cmd_floating;
|
|
|
|
static sway_cmd cmd_floating_mod;
|
|
|
|
static sway_cmd cmd_focus;
|
|
|
|
static sway_cmd cmd_focus_follows_mouse;
|
2016-01-27 16:57:55 +11:00
|
|
|
static sway_cmd cmd_font;
|
2015-11-18 05:27:01 +11:00
|
|
|
static sway_cmd cmd_for_window;
|
2015-09-15 12:59:25 +10:00
|
|
|
static sway_cmd cmd_fullscreen;
|
|
|
|
static sway_cmd cmd_gaps;
|
2016-03-29 22:49:28 +11:00
|
|
|
static sway_cmd cmd_hide_edge_borders;
|
2016-03-26 22:31:53 +11:00
|
|
|
static sway_cmd cmd_include;
|
2016-01-17 21:53:37 +11:00
|
|
|
static sway_cmd cmd_input;
|
2015-09-15 12:59:25 +10:00
|
|
|
static sway_cmd cmd_kill;
|
|
|
|
static sway_cmd cmd_layout;
|
|
|
|
static sway_cmd cmd_log_colors;
|
|
|
|
static sway_cmd cmd_mode;
|
2015-10-26 22:20:32 +11:00
|
|
|
static sway_cmd cmd_mouse_warping;
|
2015-09-15 12:59:25 +10:00
|
|
|
static sway_cmd cmd_move;
|
2015-11-27 08:55:14 +11:00
|
|
|
static sway_cmd cmd_orientation;
|
2015-09-15 12:59:25 +10:00
|
|
|
static sway_cmd cmd_output;
|
|
|
|
static sway_cmd cmd_reload;
|
|
|
|
static sway_cmd cmd_resize;
|
|
|
|
static sway_cmd cmd_scratchpad;
|
|
|
|
static sway_cmd cmd_set;
|
2016-03-20 22:29:47 +11:00
|
|
|
static sway_cmd cmd_smart_gaps;
|
2015-09-15 12:59:25 +10:00
|
|
|
static sway_cmd cmd_split;
|
|
|
|
static sway_cmd cmd_splith;
|
2015-12-30 18:34:58 +11:00
|
|
|
static sway_cmd cmd_splitt;
|
2015-09-15 12:59:25 +10:00
|
|
|
static sway_cmd cmd_splitv;
|
2015-11-27 09:53:20 +11:00
|
|
|
static sway_cmd cmd_sticky;
|
2015-09-15 12:59:25 +10:00
|
|
|
static sway_cmd cmd_workspace;
|
|
|
|
static sway_cmd cmd_ws_auto_back_and_forth;
|
2016-03-19 10:50:26 +11:00
|
|
|
static sway_cmd cmd_workspace_layout;
|
2015-12-14 10:00:11 +11:00
|
|
|
|
2015-12-16 09:38:17 +11:00
|
|
|
static sway_cmd bar_cmd_binding_mode_indicator;
|
2015-12-15 09:43:52 +11:00
|
|
|
static sway_cmd bar_cmd_bindsym;
|
2015-12-15 23:12:08 +11:00
|
|
|
static sway_cmd bar_cmd_colors;
|
2015-12-16 09:24:37 +11:00
|
|
|
static sway_cmd bar_cmd_font;
|
2015-12-15 06:15:58 +11:00
|
|
|
static sway_cmd bar_cmd_mode;
|
2015-12-15 11:01:01 +11:00
|
|
|
static sway_cmd bar_cmd_modifier;
|
2015-12-16 07:55:20 +11:00
|
|
|
static sway_cmd bar_cmd_output;
|
2015-12-16 00:05:42 +11:00
|
|
|
static sway_cmd bar_cmd_height;
|
2015-12-15 05:52:25 +11:00
|
|
|
static sway_cmd bar_cmd_hidden_state;
|
2015-12-15 04:29:26 +11:00
|
|
|
static sway_cmd bar_cmd_id;
|
2015-12-15 01:12:05 +11:00
|
|
|
static sway_cmd bar_cmd_position;
|
2015-12-16 22:58:45 +11:00
|
|
|
static sway_cmd bar_cmd_separator_symbol;
|
2015-12-15 10:38:26 +11:00
|
|
|
static sway_cmd bar_cmd_status_command;
|
2015-12-15 00:56:28 +11:00
|
|
|
static sway_cmd bar_cmd_strip_workspace_numbers;
|
2015-12-19 09:49:50 +11:00
|
|
|
static sway_cmd bar_cmd_swaybar_command;
|
2015-12-15 00:52:34 +11:00
|
|
|
static sway_cmd bar_cmd_tray_output;
|
2015-12-14 10:00:11 +11:00
|
|
|
static sway_cmd bar_cmd_tray_padding;
|
2015-12-14 09:33:54 +11:00
|
|
|
static sway_cmd bar_cmd_workspace_buttons;
|
2015-09-15 12:59:25 +10:00
|
|
|
|
2015-12-15 23:12:08 +11:00
|
|
|
static sway_cmd bar_colors_cmd_active_workspace;
|
|
|
|
static sway_cmd bar_colors_cmd_background;
|
|
|
|
static sway_cmd bar_colors_cmd_background;
|
|
|
|
static sway_cmd bar_colors_cmd_binding_mode;
|
|
|
|
static sway_cmd bar_colors_cmd_focused_workspace;
|
|
|
|
static sway_cmd bar_colors_cmd_inactive_workspace;
|
|
|
|
static sway_cmd bar_colors_cmd_separator;
|
|
|
|
static sway_cmd bar_colors_cmd_statusline;
|
|
|
|
static sway_cmd bar_colors_cmd_urgent_workspace;
|
|
|
|
|
2015-08-30 12:14:13 +10:00
|
|
|
swayc_t *sp_view;
|
|
|
|
int sp_index = 0;
|
|
|
|
|
2015-11-20 10:25:15 +11:00
|
|
|
static char *bg_options[] = {
|
|
|
|
"stretch",
|
2015-11-20 10:55:58 +11:00
|
|
|
"center",
|
|
|
|
"fill",
|
2015-11-26 07:26:21 +11:00
|
|
|
"fit",
|
2015-11-20 10:55:58 +11:00
|
|
|
"tile"
|
2015-11-20 10:25:15 +11:00
|
|
|
};
|
|
|
|
|
2015-08-13 14:51:38 +10:00
|
|
|
enum expected_args {
|
2015-08-14 00:48:03 +10:00
|
|
|
EXPECTED_MORE_THAN,
|
2015-08-17 01:01:01 +10:00
|
|
|
EXPECTED_AT_LEAST,
|
2015-08-14 00:48:03 +10:00
|
|
|
EXPECTED_LESS_THAN,
|
2015-08-14 00:50:46 +10:00
|
|
|
EXPECTED_EQUAL_TO
|
2015-08-13 14:51:38 +10:00
|
|
|
};
|
2015-08-13 14:06:09 +10:00
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
// Returns error object, or NULL if check succeeds.
|
|
|
|
static struct cmd_results *checkarg(int argc, const char *name, enum expected_args type, int val) {
|
|
|
|
struct cmd_results *error = NULL;
|
2015-08-13 17:24:03 +10:00
|
|
|
switch (type) {
|
2015-08-18 21:19:20 +10:00
|
|
|
case EXPECTED_MORE_THAN:
|
|
|
|
if (argc > val) {
|
2015-10-22 23:14:13 +11:00
|
|
|
return NULL;
|
2015-08-18 21:19:20 +10:00
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
error = cmd_results_new(CMD_INVALID, name, "Invalid %s command "
|
2015-09-11 04:07:40 +10:00
|
|
|
"(expected more than %d argument%s, got %d)",
|
2015-08-18 21:19:20 +10:00
|
|
|
name, val, (char*[2]){"s", ""}[argc==1], argc);
|
|
|
|
break;
|
|
|
|
case EXPECTED_AT_LEAST:
|
|
|
|
if (argc >= val) {
|
2015-10-22 23:14:13 +11:00
|
|
|
return NULL;
|
2015-08-18 21:19:20 +10:00
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
error = cmd_results_new(CMD_INVALID, name, "Invalid %s command "
|
2015-09-11 04:07:40 +10:00
|
|
|
"(expected at least %d argument%s, got %d)",
|
2015-08-18 21:19:20 +10:00
|
|
|
name, val, (char*[2]){"s", ""}[argc==1], argc);
|
|
|
|
break;
|
|
|
|
case EXPECTED_LESS_THAN:
|
|
|
|
if (argc < val) {
|
2015-10-22 23:14:13 +11:00
|
|
|
return NULL;
|
2015-08-18 21:19:20 +10:00
|
|
|
};
|
2015-10-22 23:14:13 +11:00
|
|
|
error = cmd_results_new(CMD_INVALID, name, "Invalid %s command "
|
2015-09-11 04:07:40 +10:00
|
|
|
"(expected less than %d argument%s, got %d)",
|
2015-08-18 21:19:20 +10:00
|
|
|
name, val, (char*[2]){"s", ""}[argc==1], argc);
|
|
|
|
break;
|
|
|
|
case EXPECTED_EQUAL_TO:
|
|
|
|
if (argc == val) {
|
2015-10-22 23:14:13 +11:00
|
|
|
return NULL;
|
2015-08-18 21:19:20 +10:00
|
|
|
};
|
2015-10-22 23:14:13 +11:00
|
|
|
error = cmd_results_new(CMD_INVALID, name, "Invalid %s command "
|
2015-09-11 04:07:40 +10:00
|
|
|
"(expected %d arguments, got %d)", name, val, argc);
|
2015-08-18 21:19:20 +10:00
|
|
|
break;
|
2015-08-13 14:51:38 +10:00
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
return error;
|
2015-08-13 14:51:38 +10:00
|
|
|
}
|
2015-08-13 14:06:09 +10:00
|
|
|
|
2016-01-15 16:03:34 +11:00
|
|
|
static struct cmd_results *cmd_assign(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "assign", EXPECTED_AT_LEAST, 2))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *criteria = *argv++;
|
|
|
|
|
2016-01-24 04:43:39 +11:00
|
|
|
if (strncmp(*argv, "→", strlen("→")) == 0) {
|
|
|
|
if (argc < 3) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "assign", "Missing workspace");
|
|
|
|
}
|
2016-01-15 16:03:34 +11:00
|
|
|
argv++;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *movecmd = "move container to workspace ";
|
2016-01-24 06:20:24 +11:00
|
|
|
int arglen = strlen(movecmd) + strlen(*argv) + 1;
|
|
|
|
char *cmdlist = calloc(1, arglen);
|
2016-01-15 16:03:34 +11:00
|
|
|
|
2016-01-24 06:20:24 +11:00
|
|
|
snprintf(cmdlist, arglen, "%s%s", movecmd, *argv);
|
2016-01-15 16:03:34 +11:00
|
|
|
|
|
|
|
struct criteria *crit = malloc(sizeof(struct criteria));
|
|
|
|
crit->crit_raw = strdup(criteria);
|
|
|
|
crit->cmdlist = cmdlist;
|
|
|
|
crit->tokens = create_list();
|
|
|
|
char *err_str = extract_crit_tokens(crit->tokens, crit->crit_raw);
|
|
|
|
|
|
|
|
if (err_str) {
|
|
|
|
error = cmd_results_new(CMD_INVALID, "assign", err_str);
|
|
|
|
free(err_str);
|
|
|
|
free_criteria(crit);
|
|
|
|
} else if (crit->tokens->length == 0) {
|
|
|
|
error = cmd_results_new(CMD_INVALID, "assign", "Found no name/value pairs in criteria");
|
|
|
|
free_criteria(crit);
|
|
|
|
} else if (list_seq_find(config->criteria, criteria_cmp, crit) != -1) {
|
|
|
|
sway_log(L_DEBUG, "assign: Duplicate, skipping.");
|
|
|
|
free_criteria(crit);
|
|
|
|
} else {
|
|
|
|
sway_log(L_DEBUG, "assign: '%s' -> '%s' added", crit->crit_raw, crit->cmdlist);
|
|
|
|
list_add(config->criteria, crit);
|
|
|
|
}
|
|
|
|
return error ? error : cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-19 10:52:14 +11:00
|
|
|
int binding_order = 0;
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_bindsym(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "bindsym", EXPECTED_MORE_THAN, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
2015-08-06 12:40:38 +10:00
|
|
|
|
|
|
|
struct sway_binding *binding = malloc(sizeof(struct sway_binding));
|
|
|
|
binding->keys = create_list();
|
|
|
|
binding->modifiers = 0;
|
2016-01-08 07:43:00 +11:00
|
|
|
binding->release = false;
|
2016-01-10 03:40:19 +11:00
|
|
|
binding->bindcode = false;
|
2016-01-08 07:43:00 +11:00
|
|
|
|
|
|
|
// Handle --release
|
|
|
|
if (strcmp("--release", argv[0]) == 0) {
|
|
|
|
if (argc >= 3) {
|
|
|
|
binding->release = true;
|
|
|
|
argv++;
|
|
|
|
argc--;
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "bindsym",
|
|
|
|
"Invalid bindsym command"
|
|
|
|
"(expected more than 2 arguments, got %d)", argc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-14 09:46:16 +10:00
|
|
|
binding->command = join_args(argv + 1, argc - 1);
|
2015-08-11 04:53:43 +10:00
|
|
|
|
2015-08-06 12:40:38 +10:00
|
|
|
list_t *split = split_string(argv[0], "+");
|
2015-11-20 02:37:48 +11:00
|
|
|
for (int i = 0; i < split->length; ++i) {
|
2015-08-09 09:24:18 +10:00
|
|
|
// Check for a modifier key
|
2016-01-06 04:07:43 +11:00
|
|
|
uint32_t mod;
|
|
|
|
if ((mod = get_modifier_mask_by_name(split->items[i])) > 0) {
|
|
|
|
binding->modifiers |= mod;
|
|
|
|
continue;
|
2015-08-09 09:24:18 +10:00
|
|
|
}
|
|
|
|
// Check for xkb key
|
2015-08-06 12:40:38 +10:00
|
|
|
xkb_keysym_t sym = xkb_keysym_from_name(split->items[i], XKB_KEYSYM_CASE_INSENSITIVE);
|
|
|
|
if (!sym) {
|
2015-10-22 23:14:13 +11:00
|
|
|
error = cmd_results_new(CMD_INVALID, "bindsym", "Unknown key '%s'", (char *)split->items[i]);
|
2015-11-20 02:37:48 +11:00
|
|
|
free_sway_binding(binding);
|
2015-08-19 19:27:48 +10:00
|
|
|
list_free(split);
|
2015-10-22 23:14:13 +11:00
|
|
|
return error;
|
2015-08-06 12:40:38 +10:00
|
|
|
}
|
2015-08-06 12:41:46 +10:00
|
|
|
xkb_keysym_t *key = malloc(sizeof(xkb_keysym_t));
|
|
|
|
*key = sym;
|
|
|
|
list_add(binding->keys, key);
|
2015-08-06 12:40:38 +10:00
|
|
|
}
|
2015-08-24 12:09:18 +10:00
|
|
|
free_flat_list(split);
|
2015-08-06 12:40:38 +10:00
|
|
|
|
2015-08-20 11:59:27 +10:00
|
|
|
struct sway_mode *mode = config->current_mode;
|
2015-11-20 02:37:48 +11:00
|
|
|
int i = list_seq_find(mode->bindings, sway_binding_cmp_keys, binding);
|
|
|
|
if (i > -1) {
|
|
|
|
sway_log(L_DEBUG, "bindsym - '%s' already exists, overwriting", argv[0]);
|
|
|
|
struct sway_binding *dup = mode->bindings->items[i];
|
|
|
|
free_sway_binding(dup);
|
|
|
|
list_del(mode->bindings, i);
|
|
|
|
}
|
2015-12-19 10:52:14 +11:00
|
|
|
binding->order = binding_order++;
|
2015-08-20 11:59:27 +10:00
|
|
|
list_add(mode->bindings, binding);
|
replace non-standard qsort_r with qsort
I've tried to make as few changes, as possible.
Usually the reason for using qsort_r is, that you can pass an extra userdata pointer to the
compare function. However, in sway list_sort wrapped qsort_r and always called a wrapper
function for comparing, the wrapper function then had the real compare function as argument.
The only thing, that the wrapper function does, is dereferencing the 'left' and 'right' function
arguments before passing them to the real compare function.
I have renamed list_sort to list_qsort to avoid confusion (so nobody tries to use list_qsort like
list_sort) and removed the wrapper functionality. Now the dereferencing must be done in the
compare function, that gets passed.
Some compare functions were used in both list_sort and list_seq_find. To make the difference
clear, I've added a '_qsort' suffix to the compare functions, that are intended to be used with
the new list_qsort. (In other words: list_qsort is not compatible anymore with list_seq_find).
- Changed and renamed function (it isn't used anywhere but in commands.c, and only for sorting):
compare_set -> compare_set_qsort
- New wrapper functions:
sway_binding_cmp_qsort (for sway_binding_cmp)
sway_mouse_binding_cmp_qsort (for sway_mouse_binding_cmp)
2015-12-22 10:38:18 +11:00
|
|
|
list_qsort(mode->bindings, sway_binding_cmp_qsort);
|
2015-08-06 12:40:38 +10:00
|
|
|
|
2015-08-09 07:01:22 +10:00
|
|
|
sway_log(L_DEBUG, "bindsym - Bound %s to command %s", argv[0], binding->command);
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-06 07:30:40 +10:00
|
|
|
}
|
|
|
|
|
2016-01-10 03:40:19 +11:00
|
|
|
static struct cmd_results *cmd_bindcode(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "bindcode", EXPECTED_MORE_THAN, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_binding *binding = malloc(sizeof(struct sway_binding));
|
|
|
|
binding->keys = create_list();
|
|
|
|
binding->modifiers = 0;
|
|
|
|
binding->release = false;
|
|
|
|
binding->bindcode = true;
|
|
|
|
|
|
|
|
// Handle --release
|
|
|
|
if (strcmp("--release", argv[0]) == 0) {
|
|
|
|
if (argc >= 3) {
|
|
|
|
binding->release = true;
|
|
|
|
argv++;
|
|
|
|
argc--;
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "bindcode",
|
|
|
|
"Invalid bindcode command"
|
|
|
|
"(expected more than 2 arguments, got %d)", argc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
binding->command = join_args(argv + 1, argc - 1);
|
|
|
|
|
|
|
|
list_t *split = split_string(argv[0], "+");
|
|
|
|
for (int i = 0; i < split->length; ++i) {
|
|
|
|
// Check for a modifier key
|
|
|
|
uint32_t mod;
|
|
|
|
if ((mod = get_modifier_mask_by_name(split->items[i])) > 0) {
|
|
|
|
binding->modifiers |= mod;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// parse keycode
|
2016-03-20 22:41:26 +11:00
|
|
|
xkb_keycode_t keycode = (int)strtol(split->items[i], NULL, 10);
|
2016-03-19 23:36:37 +11:00
|
|
|
if (!xkb_keycode_is_legal_ext(keycode)) {
|
2016-01-10 03:40:19 +11:00
|
|
|
error = cmd_results_new(CMD_INVALID, "bindcode", "Invalid keycode '%s'", (char *)split->items[i]);
|
|
|
|
free_sway_binding(binding);
|
|
|
|
list_free(split);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
xkb_keycode_t *key = malloc(sizeof(xkb_keycode_t));
|
|
|
|
*key = keycode;
|
|
|
|
list_add(binding->keys, key);
|
|
|
|
}
|
|
|
|
free_flat_list(split);
|
|
|
|
|
|
|
|
struct sway_mode *mode = config->current_mode;
|
|
|
|
int i = list_seq_find(mode->bindings, sway_binding_cmp_keys, binding);
|
|
|
|
if (i > -1) {
|
|
|
|
struct sway_binding *dup = mode->bindings->items[i];
|
|
|
|
if (dup->bindcode) {
|
|
|
|
sway_log(L_DEBUG, "bindcode - '%s' already exists, overwriting", argv[0]);
|
|
|
|
} else {
|
|
|
|
sway_log(L_DEBUG, "bindcode - '%s' already exists as bindsym, overwriting", argv[0]);
|
|
|
|
}
|
|
|
|
free_sway_binding(dup);
|
|
|
|
list_del(mode->bindings, i);
|
|
|
|
}
|
|
|
|
binding->order = binding_order++;
|
|
|
|
list_add(mode->bindings, binding);
|
|
|
|
list_qsort(mode->bindings, sway_binding_cmp_qsort);
|
|
|
|
|
|
|
|
sway_log(L_DEBUG, "bindcode - Bound %s to command %s", argv[0], binding->command);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2016-03-29 23:40:25 +11:00
|
|
|
static struct cmd_results *cmd_border(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "border", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 2) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "border",
|
|
|
|
"Expected 'border <normal|pixel|none|toggle> [<n>]");
|
|
|
|
}
|
|
|
|
|
|
|
|
enum swayc_border_types border = config->border;
|
2016-03-29 23:47:30 +11:00
|
|
|
int thickness = config->border_thickness;
|
|
|
|
|
|
|
|
swayc_t *view = NULL;
|
|
|
|
if (config->active) {
|
|
|
|
view = get_focused_view(&root_container);
|
|
|
|
border = view->border_type;
|
|
|
|
thickness = view->border_thickness;
|
|
|
|
}
|
2016-03-29 23:40:25 +11:00
|
|
|
|
|
|
|
if (strcasecmp(argv[0], "none") == 0) {
|
|
|
|
border = B_NONE;
|
|
|
|
} else if (strcasecmp(argv[0], "normal") == 0) {
|
|
|
|
border = B_NORMAL;
|
|
|
|
} else if (strcasecmp(argv[0], "pixel") == 0) {
|
|
|
|
border = B_PIXEL;
|
|
|
|
} else if (strcasecmp(argv[0], "toggle") == 0) {
|
2016-03-29 23:47:30 +11:00
|
|
|
switch (border) {
|
2016-03-29 23:40:25 +11:00
|
|
|
case B_NONE:
|
|
|
|
border = B_PIXEL;
|
|
|
|
break;
|
|
|
|
case B_NORMAL:
|
|
|
|
border = B_NONE;
|
|
|
|
break;
|
|
|
|
case B_PIXEL:
|
|
|
|
border = B_NORMAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "border",
|
|
|
|
"Expected 'border <normal|pixel|none|toggle>");
|
|
|
|
}
|
|
|
|
|
2016-03-29 23:47:30 +11:00
|
|
|
|
2016-03-29 23:40:25 +11:00
|
|
|
if (argc == 2 && (border == B_NORMAL || border == B_PIXEL)) {
|
2016-03-29 23:47:30 +11:00
|
|
|
thickness = (int)strtol(argv[1], NULL, 10);
|
2016-03-29 23:40:25 +11:00
|
|
|
if (errno == ERANGE || thickness < 0) {
|
|
|
|
errno = 0;
|
|
|
|
return cmd_results_new(CMD_INVALID, "border", "Number is out out of range.");
|
|
|
|
}
|
2016-03-29 23:47:30 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
if (config->active && view) {
|
|
|
|
view->border_type = border;
|
|
|
|
view->border_thickness = thickness;
|
|
|
|
update_geometry(view);
|
|
|
|
} else {
|
|
|
|
config->border = border;
|
2016-03-29 23:40:25 +11:00
|
|
|
config->border_thickness = thickness;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_exec_always(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if (!config->active) return cmd_results_new(CMD_DEFER, NULL, NULL);
|
|
|
|
if ((error = checkarg(argc, "exec_always", EXPECTED_MORE_THAN, 0))) {
|
|
|
|
return error;
|
2015-09-11 04:07:40 +10:00
|
|
|
}
|
2015-10-17 23:28:38 +11:00
|
|
|
|
|
|
|
char *tmp = NULL;
|
|
|
|
if (strcmp((char*)*argv, "--no-startup-id") == 0) {
|
|
|
|
sway_log(L_INFO, "exec switch '--no-startup-id' not supported, ignored.");
|
2015-10-22 23:14:13 +11:00
|
|
|
if ((error = checkarg(argc - 1, "exec_always", EXPECTED_MORE_THAN, 0))) {
|
|
|
|
return error;
|
2015-10-19 04:14:49 +11:00
|
|
|
}
|
|
|
|
|
2015-10-17 23:28:38 +11:00
|
|
|
tmp = join_args(argv + 1, argc - 1);
|
|
|
|
} else {
|
|
|
|
tmp = join_args(argv, argc);
|
|
|
|
}
|
|
|
|
|
2015-09-15 12:59:25 +10:00
|
|
|
// Put argument into cmd array
|
|
|
|
char cmd[4096];
|
|
|
|
strcpy(cmd, tmp);
|
|
|
|
free(tmp);
|
2015-09-15 23:56:51 +10:00
|
|
|
sway_log(L_DEBUG, "Executing %s", cmd);
|
2015-08-11 04:53:43 +10:00
|
|
|
|
2015-11-17 11:40:44 +11:00
|
|
|
int fd[2];
|
|
|
|
pipe(fd);
|
|
|
|
|
2015-09-15 23:56:51 +10:00
|
|
|
pid_t pid;
|
2015-11-17 11:40:44 +11:00
|
|
|
pid_t *child = malloc(sizeof(pid_t)); // malloc'd so that Linux can avoid copying the process space
|
2015-10-09 02:12:31 +11:00
|
|
|
// Fork process
|
2015-09-19 00:23:04 +10:00
|
|
|
if ((pid = fork()) == 0) {
|
2015-10-09 02:12:31 +11:00
|
|
|
// Fork child process again
|
|
|
|
setsid();
|
2015-11-17 11:40:44 +11:00
|
|
|
if ((*child = fork()) == 0) {
|
2015-10-09 02:12:31 +11:00
|
|
|
execl("/bin/sh", "/bin/sh", "-c", cmd, (void *)NULL);
|
|
|
|
/* Not reached */
|
|
|
|
}
|
2015-11-17 11:40:44 +11:00
|
|
|
close(fd[0]);
|
|
|
|
write(fd[1], child, sizeof(pid_t));
|
|
|
|
close(fd[1]);
|
|
|
|
_exit(0); // Close child process
|
2015-09-15 23:56:51 +10:00
|
|
|
} else if (pid < 0) {
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_FAILURE, "exec_always", "Command failed (sway could not fork).");
|
2015-08-11 04:53:43 +10:00
|
|
|
}
|
2015-11-17 11:40:44 +11:00
|
|
|
close(fd[1]); // close write
|
|
|
|
read(fd[0], child, sizeof(pid_t));
|
|
|
|
close(fd[0]);
|
2015-10-09 02:12:31 +11:00
|
|
|
// cleanup child process
|
|
|
|
wait(0);
|
2015-11-17 11:40:44 +11:00
|
|
|
if (*child > 0) {
|
|
|
|
sway_log(L_DEBUG, "Child process created with pid %d", *child);
|
|
|
|
// TODO: keep track of this pid and open the corresponding view on the current workspace
|
|
|
|
// blocked pending feature in wlc
|
|
|
|
}
|
|
|
|
free(child);
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-11 04:53:43 +10:00
|
|
|
}
|
|
|
|
|
2015-10-26 23:41:45 +11:00
|
|
|
static struct cmd_results *cmd_debuglog(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "debuglog", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
} else if (strcasecmp(argv[0], "toggle") == 0) {
|
|
|
|
if (config->reading) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "debuglog toggle", "Can't be used in config file.");
|
|
|
|
}
|
|
|
|
if (toggle_debug_logging()) {
|
|
|
|
sway_log(L_DEBUG, "Debuglog turned on.");
|
|
|
|
}
|
|
|
|
} else if (strcasecmp(argv[0], "on") == 0) {
|
|
|
|
set_log_level(L_DEBUG);
|
|
|
|
sway_log(L_DEBUG, "Debuglog turned on.");
|
|
|
|
} else if (strcasecmp(argv[0], "off") == 0) {
|
|
|
|
reset_log_level();
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "debuglog", "Expected 'debuglog on|off|toggle'");
|
|
|
|
}
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_exec(int argc, char **argv) {
|
|
|
|
if (!config->active) return cmd_results_new(CMD_DEFER, "exec", NULL);
|
2015-08-13 14:06:09 +10:00
|
|
|
if (config->reloading) {
|
2015-09-14 09:46:16 +10:00
|
|
|
char *args = join_args(argv, argc);
|
2015-09-11 04:07:40 +10:00
|
|
|
sway_log(L_DEBUG, "Ignoring 'exec %s' due to reload", args);
|
2015-08-10 02:26:32 +10:00
|
|
|
free(args);
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-10 02:26:32 +10:00
|
|
|
}
|
2015-09-14 09:46:16 +10:00
|
|
|
return cmd_exec_always(argc, argv);
|
2015-08-10 02:26:32 +10:00
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_exit(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if (config->reading) return cmd_results_new(CMD_FAILURE, "exit", "Can't be used in config file.");
|
|
|
|
if ((error = checkarg(argc, "exit", EXPECTED_EQUAL_TO, 0))) {
|
|
|
|
return error;
|
2015-08-09 23:23:10 +10:00
|
|
|
}
|
2015-08-17 02:54:37 +10:00
|
|
|
// Close all views
|
2015-12-29 23:00:35 +11:00
|
|
|
close_views(&root_container);
|
2016-02-26 19:08:05 +11:00
|
|
|
sway_terminate(EXIT_SUCCESS);
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-09 23:23:10 +10:00
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_floating(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if (config->reading) return cmd_results_new(CMD_FAILURE, "floating", "Can't be used in config file.");
|
|
|
|
if ((error = checkarg(argc, "floating", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
2015-08-18 16:33:15 +10:00
|
|
|
}
|
2015-11-25 06:00:39 +11:00
|
|
|
swayc_t *view = get_focused_container(&root_container);
|
|
|
|
bool wants_floating;
|
|
|
|
if (strcasecmp(argv[0], "enable") == 0) {
|
|
|
|
wants_floating = true;
|
|
|
|
} else if (strcasecmp(argv[0], "disable") == 0) {
|
|
|
|
wants_floating = false;
|
|
|
|
} else if (strcasecmp(argv[0], "toggle") == 0) {
|
|
|
|
wants_floating = !view->is_floating;
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "floating",
|
|
|
|
"Expected 'floating <enable|disable|toggle>");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prevent running floating commands on things like workspaces
|
|
|
|
if (view->type != C_VIEW) {
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
2015-08-18 16:33:15 +10:00
|
|
|
|
2015-11-25 06:00:39 +11:00
|
|
|
// Change from nonfloating to floating
|
|
|
|
if (!view->is_floating && wants_floating) {
|
|
|
|
// Remove view from its current location
|
|
|
|
destroy_container(remove_child(view));
|
|
|
|
|
|
|
|
// and move it into workspace floating
|
|
|
|
add_floating(swayc_active_workspace(), view);
|
|
|
|
view->x = (swayc_active_workspace()->width - view->width)/2;
|
|
|
|
view->y = (swayc_active_workspace()->height - view->height)/2;
|
|
|
|
if (view->desired_width != -1) {
|
|
|
|
view->width = view->desired_width;
|
2015-08-17 15:38:34 +10:00
|
|
|
}
|
2015-11-25 06:00:39 +11:00
|
|
|
if (view->desired_height != -1) {
|
|
|
|
view->height = view->desired_height;
|
|
|
|
}
|
|
|
|
arrange_windows(swayc_active_workspace(), -1, -1);
|
|
|
|
|
|
|
|
} else if (view->is_floating && !wants_floating) {
|
|
|
|
// Delete the view from the floating list and unset its is_floating flag
|
|
|
|
remove_child(view);
|
|
|
|
view->is_floating = false;
|
|
|
|
// Get the properly focused container, and add in the view there
|
|
|
|
swayc_t *focused = container_under_pointer();
|
|
|
|
// If focused is null, it's because the currently focused container is a workspace
|
2015-11-29 09:48:22 +11:00
|
|
|
if (focused == NULL || focused->is_floating) {
|
2015-11-25 06:00:39 +11:00
|
|
|
focused = swayc_active_workspace();
|
|
|
|
}
|
|
|
|
set_focused_container(focused);
|
2015-08-17 15:38:34 +10:00
|
|
|
|
2015-11-25 06:00:39 +11:00
|
|
|
sway_log(L_DEBUG, "Non-floating focused container is %p", focused);
|
2015-08-17 15:38:34 +10:00
|
|
|
|
2015-11-25 06:00:39 +11:00
|
|
|
// Case of focused workspace, just create as child of it
|
|
|
|
if (focused->type == C_WORKSPACE) {
|
|
|
|
add_child(focused, view);
|
|
|
|
}
|
|
|
|
// Regular case, create as sibling of current container
|
|
|
|
else {
|
|
|
|
add_sibling(focused, view);
|
2015-08-17 15:38:34 +10:00
|
|
|
}
|
2015-11-25 06:00:39 +11:00
|
|
|
// Refocus on the view once its been put back into the layout
|
|
|
|
view->width = view->height = 0;
|
|
|
|
arrange_windows(swayc_active_workspace(), -1, -1);
|
|
|
|
remove_view_from_scratchpad(view);
|
2015-08-17 15:38:34 +10:00
|
|
|
}
|
2015-11-25 06:00:39 +11:00
|
|
|
set_focused_container(view);
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-17 15:38:34 +10:00
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_floating_mod(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
2015-12-11 21:39:24 +11:00
|
|
|
if ((error = checkarg(argc, "floating_modifier", EXPECTED_AT_LEAST, 1))) {
|
2015-10-22 23:14:13 +11:00
|
|
|
return error;
|
2015-08-18 16:33:15 +10:00
|
|
|
}
|
2016-01-06 04:07:43 +11:00
|
|
|
int i;
|
2015-08-20 02:09:35 +10:00
|
|
|
list_t *split = split_string(argv[0], "+");
|
|
|
|
config->floating_mod = 0;
|
|
|
|
|
2015-12-11 21:39:24 +11:00
|
|
|
// set modifier keys
|
2015-08-20 02:09:35 +10:00
|
|
|
for (i = 0; i < split->length; ++i) {
|
2016-01-06 04:07:43 +11:00
|
|
|
config->floating_mod |= get_modifier_mask_by_name(split->items[i]);
|
2015-08-20 02:09:35 +10:00
|
|
|
}
|
2015-08-24 12:09:18 +10:00
|
|
|
free_flat_list(split);
|
2015-08-20 02:09:35 +10:00
|
|
|
if (!config->floating_mod) {
|
2015-10-22 23:14:13 +11:00
|
|
|
error = cmd_results_new(CMD_INVALID, "floating_modifier", "Unknown keys %s", argv[0]);
|
|
|
|
return error;
|
2015-08-20 02:09:35 +10:00
|
|
|
}
|
2015-12-11 21:39:24 +11:00
|
|
|
|
|
|
|
if (argc >= 2) {
|
|
|
|
if (strcasecmp("inverse", argv[1]) == 0) {
|
|
|
|
config->dragging_key = M_RIGHT_CLICK;
|
|
|
|
config->resizing_key = M_LEFT_CLICK;
|
|
|
|
} else if (strcasecmp("normal", argv[1]) == 0) {
|
|
|
|
config->dragging_key = M_LEFT_CLICK;
|
|
|
|
config->resizing_key = M_RIGHT_CLICK;
|
|
|
|
} else {
|
|
|
|
error = cmd_results_new(CMD_INVALID, "floating_modifier", "Invalid definition %s", argv[1]);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-18 16:33:15 +10:00
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_focus(int argc, char **argv) {
|
|
|
|
if (config->reading) return cmd_results_new(CMD_FAILURE, "focus", "Can't be used in config file.");
|
|
|
|
struct cmd_results *error = NULL;
|
2015-10-24 12:31:54 +11:00
|
|
|
if (argc > 0 && strcasecmp(argv[0], "output") == 0) {
|
|
|
|
swayc_t *output = NULL;
|
2015-11-16 10:35:25 +11:00
|
|
|
struct wlc_point abs_pos;
|
|
|
|
get_absolute_center_position(get_focused_container(&root_container), &abs_pos);
|
2015-10-24 12:31:54 +11:00
|
|
|
if ((error = checkarg(argc, "focus", EXPECTED_EQUAL_TO, 2))) {
|
|
|
|
return error;
|
2015-11-16 10:35:25 +11:00
|
|
|
} else if (!(output = output_by_name(argv[1], &abs_pos))) {
|
2015-10-24 12:31:54 +11:00
|
|
|
return cmd_results_new(CMD_FAILURE, "focus output",
|
2015-11-16 10:35:25 +11:00
|
|
|
"Can't find output with name/at direction '%s' @ (%i,%i)", argv[1], abs_pos.x, abs_pos.y);
|
2015-10-24 12:31:54 +11:00
|
|
|
} else if (!workspace_switch(swayc_active_workspace_for(output))) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "focus output",
|
|
|
|
"Switching to workspace on output '%s' was blocked", argv[1]);
|
2015-10-26 22:20:32 +11:00
|
|
|
} else if (config->mouse_warping) {
|
|
|
|
swayc_t *focused = get_focused_view(output);
|
|
|
|
if (focused && focused->type == C_VIEW) {
|
|
|
|
center_pointer_on(focused);
|
|
|
|
}
|
2015-10-24 12:31:54 +11:00
|
|
|
}
|
2015-10-26 22:20:32 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-10-24 12:31:54 +11:00
|
|
|
} else if ((error = checkarg(argc, "focus", EXPECTED_EQUAL_TO, 1))) {
|
2015-10-22 23:14:13 +11:00
|
|
|
return error;
|
|
|
|
}
|
2015-08-20 10:57:24 +10:00
|
|
|
static int floating_toggled_index = 0;
|
|
|
|
static int tiled_toggled_index = 0;
|
2015-08-10 10:10:26 +10:00
|
|
|
if (strcasecmp(argv[0], "left") == 0) {
|
2015-09-11 04:07:40 +10:00
|
|
|
move_focus(MOVE_LEFT);
|
2015-08-10 10:10:26 +10:00
|
|
|
} else if (strcasecmp(argv[0], "right") == 0) {
|
2015-09-11 04:07:40 +10:00
|
|
|
move_focus(MOVE_RIGHT);
|
2015-08-10 10:10:26 +10:00
|
|
|
} else if (strcasecmp(argv[0], "up") == 0) {
|
2015-09-11 04:07:40 +10:00
|
|
|
move_focus(MOVE_UP);
|
2015-08-10 10:10:26 +10:00
|
|
|
} else if (strcasecmp(argv[0], "down") == 0) {
|
2015-09-11 04:07:40 +10:00
|
|
|
move_focus(MOVE_DOWN);
|
2015-08-10 10:20:53 +10:00
|
|
|
} else if (strcasecmp(argv[0], "parent") == 0) {
|
2015-09-11 04:07:40 +10:00
|
|
|
move_focus(MOVE_PARENT);
|
2015-08-20 10:57:24 +10:00
|
|
|
} else if (strcasecmp(argv[0], "mode_toggle") == 0) {
|
|
|
|
int i;
|
2015-08-22 03:28:37 +10:00
|
|
|
swayc_t *workspace = swayc_active_workspace();
|
|
|
|
swayc_t *focused = get_focused_view(workspace);
|
2015-08-20 10:57:24 +10:00
|
|
|
if (focused->is_floating) {
|
2015-08-22 03:28:37 +10:00
|
|
|
if (workspace->children->length > 0) {
|
|
|
|
for (i = 0;i < workspace->floating->length; i++) {
|
|
|
|
if (workspace->floating->items[i] == focused) {
|
2015-08-20 10:57:24 +10:00
|
|
|
floating_toggled_index = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-08-22 03:28:37 +10:00
|
|
|
if (workspace->children->length > tiled_toggled_index) {
|
|
|
|
set_focused_container(get_focused_view(workspace->children->items[tiled_toggled_index]));
|
2015-08-20 10:57:24 +10:00
|
|
|
} else {
|
2015-08-22 03:28:37 +10:00
|
|
|
set_focused_container(get_focused_view(workspace->children->items[0]));
|
2015-08-20 10:57:24 +10:00
|
|
|
tiled_toggled_index = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2015-08-22 03:28:37 +10:00
|
|
|
if (workspace->floating->length > 0) {
|
|
|
|
for (i = 0;i < workspace->children->length; i++) {
|
|
|
|
if (workspace->children->items[i] == focused) {
|
2015-08-20 10:57:24 +10:00
|
|
|
tiled_toggled_index = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-08-22 03:28:37 +10:00
|
|
|
if (workspace->floating->length > floating_toggled_index) {
|
|
|
|
swayc_t *floating = workspace->floating->items[floating_toggled_index];
|
2015-08-20 10:57:24 +10:00
|
|
|
set_focused_container(get_focused_view(floating));
|
|
|
|
} else {
|
2015-08-22 03:28:37 +10:00
|
|
|
swayc_t *floating = workspace->floating->items[workspace->floating->length - 1];
|
2015-08-20 10:57:24 +10:00
|
|
|
set_focused_container(get_focused_view(floating));
|
2015-08-22 03:28:37 +10:00
|
|
|
tiled_toggled_index = workspace->floating->length - 1;
|
2015-08-20 10:57:24 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-10-24 12:31:54 +11:00
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_INVALID, "focus",
|
|
|
|
"Expected 'focus <direction|parent|mode_toggle>' or 'focus output <direction|name>'");
|
2015-08-10 10:10:26 +10:00
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-10 10:10:26 +10:00
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_focus_follows_mouse(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "focus_follows_mouse", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
2015-08-09 23:23:10 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
config->focus_follows_mouse = !strcasecmp(argv[0], "yes");
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-09 23:23:10 +10:00
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_seamless_mouse(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "seamless_mouse", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
2015-10-22 10:34:32 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
config->seamless_mouse = (strcasecmp(argv[0], "on") == 0 || strcasecmp(argv[0], "yes") == 0);
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-10-22 10:34:32 +11:00
|
|
|
}
|
|
|
|
|
2015-08-30 12:14:13 +10:00
|
|
|
static void hide_view_in_scratchpad(swayc_t *sp_view) {
|
2015-09-15 23:56:51 +10:00
|
|
|
if (sp_view == NULL) {
|
2015-08-30 12:14:13 +10:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wlc_view_set_mask(sp_view->handle, 0);
|
|
|
|
sp_view->visible = false;
|
|
|
|
swayc_t *ws = sp_view->parent;
|
|
|
|
remove_child(sp_view);
|
|
|
|
if (swayc_active_workspace() != ws && ws->floating->length == 0 && ws->children->length == 0) {
|
|
|
|
destroy_workspace(ws);
|
2016-02-25 21:41:42 +11:00
|
|
|
} else {
|
|
|
|
arrange_windows(ws, -1, -1);
|
2015-08-30 12:14:13 +10:00
|
|
|
}
|
|
|
|
set_focused_container(container_under_pointer());
|
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_mode(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "mode", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
2015-09-08 07:29:40 +10:00
|
|
|
}
|
2016-03-30 21:58:47 +11:00
|
|
|
|
|
|
|
const char *mode_name = argv[0];
|
|
|
|
bool mode_make = (argc == 2 && strcmp(argv[1], "{") == 0);
|
2015-09-15 12:59:25 +10:00
|
|
|
if (mode_make) {
|
2015-10-22 23:14:13 +11:00
|
|
|
if (!config->reading)
|
|
|
|
return cmd_results_new(CMD_FAILURE, "mode", "Can only be used in config file.");
|
2015-09-11 04:07:40 +10:00
|
|
|
}
|
2015-09-08 07:29:40 +10:00
|
|
|
struct sway_mode *mode = NULL;
|
|
|
|
// Find mode
|
|
|
|
int i, len = config->modes->length;
|
|
|
|
for (i = 0; i < len; ++i) {
|
|
|
|
struct sway_mode *find = config->modes->items[i];
|
2015-09-09 03:53:15 +10:00
|
|
|
if (strcasecmp(find->name, mode_name) == 0) {
|
2015-09-08 07:29:40 +10:00
|
|
|
mode = find;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Create mode if it doesnt exist
|
2015-09-09 03:53:15 +10:00
|
|
|
if (!mode && mode_make) {
|
2015-09-08 07:29:40 +10:00
|
|
|
mode = malloc(sizeof*mode);
|
2015-09-08 08:03:04 +10:00
|
|
|
mode->name = strdup(mode_name);
|
2015-09-08 07:29:40 +10:00
|
|
|
mode->bindings = create_list();
|
|
|
|
list_add(config->modes, mode);
|
|
|
|
}
|
|
|
|
if (!mode) {
|
2015-10-22 23:14:13 +11:00
|
|
|
error = cmd_results_new(CMD_INVALID, "mode", "Unknown mode `%s'", mode_name);
|
|
|
|
return error;
|
2015-09-08 07:29:40 +10:00
|
|
|
}
|
2015-09-15 12:59:25 +10:00
|
|
|
if ((config->reading && mode_make) || (!config->reading && !mode_make)) {
|
|
|
|
sway_log(L_DEBUG, "Switching to mode `%s'",mode->name);
|
|
|
|
}
|
2015-09-08 07:29:40 +10:00
|
|
|
// Set current mode
|
|
|
|
config->current_mode = mode;
|
2016-01-04 08:00:59 +11:00
|
|
|
if (!mode_make) {
|
|
|
|
// trigger IPC mode event
|
|
|
|
ipc_event_mode(config->current_mode->name);
|
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(mode_make ? CMD_BLOCK_MODE : CMD_SUCCESS, NULL, NULL);
|
2015-09-08 07:29:40 +10:00
|
|
|
}
|
|
|
|
|
2015-10-26 22:20:32 +11:00
|
|
|
static struct cmd_results *cmd_mouse_warping(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "mouse_warping", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
} else if (strcasecmp(argv[0], "output") == 0) {
|
|
|
|
config->mouse_warping = true;
|
|
|
|
} else if (strcasecmp(argv[0], "none") == 0) {
|
|
|
|
config->mouse_warping = false;
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "mouse_warping", "Expected 'mouse_warping output|none'");
|
|
|
|
}
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_move(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if (config->reading) return cmd_results_new(CMD_FAILURE, "move", "Can't be used in config file.");
|
|
|
|
if ((error = checkarg(argc, "move", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
2015-08-21 06:27:38 +10:00
|
|
|
}
|
2015-10-25 01:55:21 +11:00
|
|
|
const char* expected_syntax = "Expected 'move <left|right|up|down>' or "
|
2015-10-25 09:38:33 +11:00
|
|
|
"'move <container|window> to workspace <name>' or "
|
2015-10-25 09:38:33 +11:00
|
|
|
"'move <container|window|workspace> to output <name|direction>'";
|
2015-08-21 06:27:38 +10:00
|
|
|
swayc_t *view = get_focused_container(&root_container);
|
|
|
|
|
|
|
|
if (strcasecmp(argv[0], "left") == 0) {
|
2015-08-29 04:14:59 +10:00
|
|
|
move_container(view, MOVE_LEFT);
|
2015-08-21 06:27:38 +10:00
|
|
|
} else if (strcasecmp(argv[0], "right") == 0) {
|
2015-08-29 04:14:59 +10:00
|
|
|
move_container(view, MOVE_RIGHT);
|
2015-08-21 06:27:38 +10:00
|
|
|
} else if (strcasecmp(argv[0], "up") == 0) {
|
2015-08-29 04:14:59 +10:00
|
|
|
move_container(view, MOVE_UP);
|
2015-08-21 06:27:38 +10:00
|
|
|
} else if (strcasecmp(argv[0], "down") == 0) {
|
2015-08-29 04:14:59 +10:00
|
|
|
move_container(view, MOVE_DOWN);
|
2015-08-26 02:25:36 +10:00
|
|
|
} else if (strcasecmp(argv[0], "container") == 0 || strcasecmp(argv[0], "window") == 0) {
|
2015-10-25 01:55:21 +11:00
|
|
|
// "move container ...
|
|
|
|
if ((error = checkarg(argc, "move container/window", EXPECTED_AT_LEAST, 4))) {
|
2015-10-22 23:14:13 +11:00
|
|
|
return error;
|
2015-10-25 01:55:21 +11:00
|
|
|
} else if ( strcasecmp(argv[1], "to") == 0 && strcasecmp(argv[2], "workspace") == 0) {
|
|
|
|
// move container to workspace x
|
|
|
|
if (view->type != C_CONTAINER && view->type != C_VIEW) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "move", "Can only move containers and views.");
|
|
|
|
}
|
2015-08-26 02:25:36 +10:00
|
|
|
|
2016-01-11 13:39:51 +11:00
|
|
|
const char *ws_name = argv[3];
|
2015-12-18 08:28:41 +11:00
|
|
|
swayc_t *ws;
|
|
|
|
if (argc == 5 && strcasecmp(ws_name, "number") == 0) {
|
2015-10-25 01:55:21 +11:00
|
|
|
// move "container to workspace number x"
|
2016-01-11 13:39:51 +11:00
|
|
|
ws_name = argv[4];
|
2015-12-18 08:28:41 +11:00
|
|
|
ws = workspace_by_number(ws_name);
|
|
|
|
} else {
|
|
|
|
ws = workspace_by_name(ws_name);
|
2015-10-25 01:55:21 +11:00
|
|
|
}
|
2015-09-14 09:46:16 +10:00
|
|
|
|
2015-10-25 01:55:21 +11:00
|
|
|
if (ws == NULL) {
|
|
|
|
ws = workspace_create(ws_name);
|
|
|
|
}
|
|
|
|
move_container_to(view, get_focused_container(ws));
|
2015-10-25 09:38:33 +11:00
|
|
|
} else if (strcasecmp(argv[1], "to") == 0 && strcasecmp(argv[2], "output") == 0) {
|
|
|
|
// move container to output x
|
|
|
|
swayc_t *output = NULL;
|
2015-11-16 10:35:25 +11:00
|
|
|
struct wlc_point abs_pos;
|
|
|
|
get_absolute_center_position(view, &abs_pos);
|
2015-10-25 09:38:33 +11:00
|
|
|
if (view->type != C_CONTAINER && view->type != C_VIEW) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "move", "Can only move containers and views.");
|
2015-11-16 10:35:25 +11:00
|
|
|
} else if (!(output = output_by_name(argv[3], &abs_pos))) {
|
2015-10-25 09:38:33 +11:00
|
|
|
return cmd_results_new(CMD_FAILURE, "move",
|
2015-11-16 10:35:25 +11:00
|
|
|
"Can't find output with name/direction '%s' @ (%i,%i)", argv[3], abs_pos.x, abs_pos.y);
|
2015-10-25 09:38:33 +11:00
|
|
|
} else {
|
|
|
|
swayc_t *container = get_focused_container(output);
|
|
|
|
if (container->is_floating) {
|
|
|
|
move_container_to(view, container->parent);
|
|
|
|
} else {
|
|
|
|
move_container_to(view, container);
|
|
|
|
}
|
|
|
|
}
|
2015-10-25 01:55:21 +11:00
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_INVALID, "move", expected_syntax);
|
2015-09-14 09:46:16 +10:00
|
|
|
}
|
2015-10-25 09:38:33 +11:00
|
|
|
} else if (strcasecmp(argv[0], "workspace") == 0) {
|
|
|
|
// move workspace (to output x)
|
|
|
|
swayc_t *output = NULL;
|
2015-11-16 10:35:25 +11:00
|
|
|
struct wlc_point abs_pos;
|
|
|
|
get_absolute_center_position(view, &abs_pos);
|
2015-10-25 09:38:33 +11:00
|
|
|
if ((error = checkarg(argc, "move workspace", EXPECTED_EQUAL_TO, 4))) {
|
|
|
|
return error;
|
|
|
|
} else if (strcasecmp(argv[1], "to") != 0 || strcasecmp(argv[2], "output") != 0) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "move", expected_syntax);
|
2015-11-16 10:35:25 +11:00
|
|
|
} else if (!(output = output_by_name(argv[3], &abs_pos))) {
|
2015-10-25 09:38:33 +11:00
|
|
|
return cmd_results_new(CMD_FAILURE, "move workspace",
|
2015-11-16 10:35:25 +11:00
|
|
|
"Can't find output with name/direction '%s' @ (%i,%i)", argv[3], abs_pos.x, abs_pos.y);
|
2015-10-25 09:38:33 +11:00
|
|
|
}
|
|
|
|
if (view->type == C_WORKSPACE) {
|
|
|
|
// This probably means we're moving an empty workspace, but
|
|
|
|
// that's fine.
|
|
|
|
move_workspace_to(view, output);
|
|
|
|
} else {
|
|
|
|
swayc_t *workspace = swayc_parent_by_type(view, C_WORKSPACE);
|
|
|
|
move_workspace_to(workspace, output);
|
|
|
|
}
|
2015-08-29 14:39:12 +10:00
|
|
|
} else if (strcasecmp(argv[0], "scratchpad") == 0) {
|
2015-10-25 01:55:21 +11:00
|
|
|
// move scratchpad ...
|
2015-08-29 15:33:33 +10:00
|
|
|
if (view->type != C_CONTAINER && view->type != C_VIEW) {
|
2015-10-25 01:55:21 +11:00
|
|
|
return cmd_results_new(CMD_FAILURE, "move scratchpad", "Can only move containers and views.");
|
2015-08-29 15:33:33 +10:00
|
|
|
}
|
2015-08-29 14:39:12 +10:00
|
|
|
swayc_t *view = get_focused_container(&root_container);
|
2015-08-30 12:14:13 +10:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < scratchpad->length; i++) {
|
|
|
|
if (scratchpad->items[i] == view) {
|
|
|
|
hide_view_in_scratchpad(view);
|
|
|
|
sp_view = NULL;
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-30 12:14:13 +10:00
|
|
|
}
|
|
|
|
}
|
2015-08-29 14:39:12 +10:00
|
|
|
list_add(scratchpad, view);
|
2015-08-29 15:33:33 +10:00
|
|
|
if (!view->is_floating) {
|
|
|
|
destroy_container(remove_child(view));
|
2015-08-29 14:39:12 +10:00
|
|
|
} else {
|
2015-08-29 15:33:33 +10:00
|
|
|
remove_child(view);
|
|
|
|
}
|
|
|
|
wlc_view_set_mask(view->handle, 0);
|
|
|
|
arrange_windows(swayc_active_workspace(), -1, -1);
|
|
|
|
swayc_t *focused = container_under_pointer();
|
|
|
|
if (focused == NULL) {
|
|
|
|
focused = swayc_active_workspace();
|
2015-08-29 14:39:12 +10:00
|
|
|
}
|
2015-08-29 15:33:33 +10:00
|
|
|
set_focused_container(focused);
|
2016-01-28 22:10:56 +11:00
|
|
|
} else if (strcasecmp(argv[0], "position") == 0 && strcasecmp(argv[1], "mouse") == 0) {
|
|
|
|
if (view->is_floating) {
|
|
|
|
swayc_t *output = swayc_parent_by_type(view, C_OUTPUT);
|
2016-03-29 23:47:30 +11:00
|
|
|
struct wlc_geometry g;
|
|
|
|
wlc_view_get_visible_geometry(view->handle, &g);
|
2016-01-28 22:10:56 +11:00
|
|
|
const struct wlc_size *size = wlc_output_get_resolution(output->handle);
|
|
|
|
|
|
|
|
struct wlc_point origin;
|
|
|
|
wlc_pointer_get_position(&origin);
|
|
|
|
|
|
|
|
int32_t x = origin.x - g.size.w / 2;
|
|
|
|
int32_t y = origin.y - g.size.h / 2;
|
2016-02-08 22:31:13 +11:00
|
|
|
|
2016-01-28 22:10:56 +11:00
|
|
|
uint32_t w = size->w - g.size.w;
|
|
|
|
uint32_t h = size->h - g.size.h;
|
|
|
|
|
2016-02-08 22:30:42 +11:00
|
|
|
view->x = g.origin.x = MIN((int32_t)w, MAX(x, 0));
|
|
|
|
view->y = g.origin.y = MIN((int32_t)h, MAX(y, 0));
|
2016-01-28 22:10:56 +11:00
|
|
|
|
|
|
|
wlc_view_set_geometry(view->handle, 0, &g);
|
|
|
|
}
|
2015-08-21 07:29:36 +10:00
|
|
|
} else {
|
2015-10-25 01:55:21 +11:00
|
|
|
return cmd_results_new(CMD_INVALID, "move", expected_syntax);
|
2015-08-21 06:27:38 +10:00
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-21 06:45:00 +10:00
|
|
|
}
|
2015-08-21 06:27:38 +10:00
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_orientation(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if (!config->reading) return cmd_results_new(CMD_FAILURE, "orientation", "Can only be used in config file.");
|
|
|
|
if ((error = checkarg(argc, "orientation", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
2015-09-11 04:07:40 +10:00
|
|
|
}
|
2015-08-29 04:14:59 +10:00
|
|
|
if (strcasecmp(argv[0], "horizontal") == 0) {
|
2015-08-28 12:52:59 +10:00
|
|
|
config->default_orientation = L_HORIZ;
|
|
|
|
} else if (strcasecmp(argv[0], "vertical") == 0) {
|
|
|
|
config->default_orientation = L_VERT;
|
|
|
|
} else if (strcasecmp(argv[0], "auto") == 0) {
|
|
|
|
// Do nothing
|
|
|
|
} else {
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_INVALID, "orientation", "Expected 'orientation <horizontal|vertical|auto>'");
|
2015-08-28 12:52:59 +10:00
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-28 12:52:59 +10:00
|
|
|
}
|
|
|
|
|
2016-01-17 21:53:37 +11:00
|
|
|
static void input_cmd_apply(struct input_config *input) {
|
|
|
|
int i;
|
|
|
|
i = list_seq_find(config->input_configs, input_identifier_cmp, input->identifier);
|
|
|
|
if (i >= 0) {
|
|
|
|
// merge existing config
|
|
|
|
struct input_config *ic = config->input_configs->items[i];
|
|
|
|
merge_input_config(ic, input);
|
|
|
|
free_input_config(input);
|
|
|
|
input = ic;
|
|
|
|
} else {
|
|
|
|
list_add(config->input_configs, input);
|
|
|
|
}
|
|
|
|
|
|
|
|
current_input_config = input;
|
|
|
|
|
|
|
|
if (input->identifier) {
|
|
|
|
// Try to find the input device and apply configuration now. If
|
|
|
|
// this is during startup then there will be no container and config
|
|
|
|
// will be applied during normal "new input" event from wlc.
|
|
|
|
struct libinput_device *device = NULL;
|
|
|
|
for (int i = 0; i < input_devices->length; ++i) {
|
|
|
|
device = input_devices->items[i];
|
|
|
|
char* dev_identifier = libinput_dev_unique_id(device);
|
|
|
|
int match = dev_identifier && strcmp(dev_identifier, input->identifier) == 0;
|
|
|
|
free(dev_identifier);
|
|
|
|
if (match) {
|
|
|
|
apply_input_config(input, device);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *input_cmd_click_method(int argc, char **argv) {
|
|
|
|
sway_log(L_DEBUG, "click_method for device: %d %s", current_input_config==NULL, current_input_config->identifier);
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "click_method", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
if (!current_input_config) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "click_method", "No input device defined.");
|
|
|
|
}
|
|
|
|
struct input_config *new_config = new_input_config(current_input_config->identifier);
|
|
|
|
|
|
|
|
if (strcasecmp(argv[0], "none") == 0) {
|
|
|
|
new_config->click_method = LIBINPUT_CONFIG_CLICK_METHOD_NONE;
|
|
|
|
} else if (strcasecmp(argv[0], "button_areas") == 0) {
|
|
|
|
new_config->click_method = LIBINPUT_CONFIG_CLICK_METHOD_BUTTON_AREAS;
|
|
|
|
} else if (strcasecmp(argv[0], "clickfinger") == 0) {
|
|
|
|
new_config->click_method = LIBINPUT_CONFIG_CLICK_METHOD_CLICKFINGER;
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_INVALID, "click_method", "Expected 'click_method <none|button_areas|clickfinger'");
|
|
|
|
}
|
|
|
|
|
|
|
|
input_cmd_apply(new_config);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *input_cmd_drag_lock(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "drag_lock", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
if (!current_input_config) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "drag_lock", "No input device defined.");
|
|
|
|
}
|
|
|
|
struct input_config *new_config = new_input_config(current_input_config->identifier);
|
|
|
|
|
|
|
|
if (strcasecmp(argv[0], "enabled") == 0) {
|
|
|
|
new_config->drag_lock = LIBINPUT_CONFIG_DRAG_LOCK_ENABLED;
|
|
|
|
} else if (strcasecmp(argv[0], "disabled") == 0) {
|
|
|
|
new_config->drag_lock = LIBINPUT_CONFIG_DRAG_LOCK_DISABLED;
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_INVALID, "drag_lock", "Expected 'drag_lock <enabled|disabled>'");
|
|
|
|
}
|
|
|
|
|
|
|
|
input_cmd_apply(new_config);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *input_cmd_dwt(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "dwt", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
if (!current_input_config) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "dwt", "No input device defined.");
|
|
|
|
}
|
|
|
|
struct input_config *new_config = new_input_config(current_input_config->identifier);
|
|
|
|
|
|
|
|
if (strcasecmp(argv[0], "enabled") == 0) {
|
|
|
|
new_config->dwt = LIBINPUT_CONFIG_DWT_ENABLED;
|
|
|
|
} else if (strcasecmp(argv[0], "disabled") == 0) {
|
|
|
|
new_config->dwt = LIBINPUT_CONFIG_DWT_DISABLED;
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_INVALID, "dwt", "Expected 'dwt <enabled|disabled>'");
|
|
|
|
}
|
|
|
|
|
|
|
|
input_cmd_apply(new_config);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *input_cmd_events(int argc, char **argv) {
|
|
|
|
sway_log(L_DEBUG, "events for device: %s", current_input_config->identifier);
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "events", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
if (!current_input_config) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "events", "No input device defined.");
|
|
|
|
}
|
|
|
|
struct input_config *new_config = new_input_config(current_input_config->identifier);
|
|
|
|
|
|
|
|
if (strcasecmp(argv[0], "enabled") == 0) {
|
|
|
|
new_config->send_events = LIBINPUT_CONFIG_SEND_EVENTS_ENABLED;
|
|
|
|
} else if (strcasecmp(argv[0], "disabled") == 0) {
|
|
|
|
new_config->send_events = LIBINPUT_CONFIG_SEND_EVENTS_DISABLED;
|
|
|
|
} else if (strcasecmp(argv[0], "disabled_on_external_mouse") == 0) {
|
|
|
|
new_config->send_events = LIBINPUT_CONFIG_SEND_EVENTS_DISABLED_ON_EXTERNAL_MOUSE;
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_INVALID, "events", "Expected 'events <enabled|disabled|disabled_on_external_mouse>'");
|
|
|
|
}
|
|
|
|
|
|
|
|
input_cmd_apply(new_config);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *input_cmd_middle_emulation(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "middle_emulation", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
if (!current_input_config) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "middle_emulation", "No input device defined.");
|
|
|
|
}
|
|
|
|
struct input_config *new_config = new_input_config(current_input_config->identifier);
|
|
|
|
|
|
|
|
if (strcasecmp(argv[0], "enabled") == 0) {
|
|
|
|
new_config->middle_emulation = LIBINPUT_CONFIG_MIDDLE_EMULATION_ENABLED;
|
|
|
|
} else if (strcasecmp(argv[0], "disabled") == 0) {
|
|
|
|
new_config->middle_emulation = LIBINPUT_CONFIG_MIDDLE_EMULATION_DISABLED;
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_INVALID, "middle_emulation", "Expected 'middle_emulation <enabled|disabled>'");
|
|
|
|
}
|
|
|
|
|
|
|
|
input_cmd_apply(new_config);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *input_cmd_natural_scroll(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "natural_scroll", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
if (!current_input_config) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "natural_scoll", "No input device defined.");
|
|
|
|
}
|
|
|
|
struct input_config *new_config = new_input_config(current_input_config->identifier);
|
|
|
|
|
|
|
|
if (strcasecmp(argv[0], "enabled") == 0) {
|
|
|
|
new_config->natural_scroll = 1;
|
|
|
|
} else if (strcasecmp(argv[0], "disabled") == 0) {
|
|
|
|
new_config->natural_scroll = 0;
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_INVALID, "natural_scroll", "Expected 'natural_scroll <enabled|disabled>'");
|
|
|
|
}
|
2016-01-22 03:03:21 +11:00
|
|
|
|
2016-01-17 21:53:37 +11:00
|
|
|
input_cmd_apply(new_config);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *input_cmd_pointer_accel(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "pointer_accel", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
if (!current_input_config) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "pointer_accel", "No input device defined.");
|
|
|
|
}
|
|
|
|
struct input_config *new_config = new_input_config(current_input_config->identifier);
|
|
|
|
|
|
|
|
float pointer_accel = atof(argv[0]);
|
|
|
|
if (pointer_accel < -1 || pointer_accel > 1) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "pointer_accel", "Input out of range [-1, 1]");
|
|
|
|
}
|
|
|
|
new_config->pointer_accel = pointer_accel;
|
|
|
|
|
|
|
|
input_cmd_apply(new_config);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *input_cmd_scroll_method(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "scroll_method", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
if (!current_input_config) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "scroll_method", "No input device defined.");
|
|
|
|
}
|
|
|
|
struct input_config *new_config = new_input_config(current_input_config->identifier);
|
|
|
|
|
|
|
|
if (strcasecmp(argv[0], "none") == 0) {
|
|
|
|
new_config->scroll_method = LIBINPUT_CONFIG_SCROLL_NO_SCROLL;
|
|
|
|
} else if (strcasecmp(argv[0], "two_finger") == 0) {
|
|
|
|
new_config->scroll_method = LIBINPUT_CONFIG_SCROLL_2FG;
|
|
|
|
} else if (strcasecmp(argv[0], "edge") == 0) {
|
|
|
|
new_config->scroll_method = LIBINPUT_CONFIG_SCROLL_EDGE;
|
|
|
|
} else if (strcasecmp(argv[0], "on_button_down") == 0) {
|
|
|
|
new_config->scroll_method = LIBINPUT_CONFIG_SCROLL_ON_BUTTON_DOWN;
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_INVALID, "scroll_method", "Expected 'scroll_method <none|two_finger|edge|on_button_down>'");
|
|
|
|
}
|
|
|
|
|
|
|
|
input_cmd_apply(new_config);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *input_cmd_tap(int argc, char **argv) {
|
|
|
|
sway_log(L_DEBUG, "tap for device: %s", current_input_config->identifier);
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "tap", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
if (!current_input_config) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "tap", "No input device defined.");
|
|
|
|
}
|
|
|
|
struct input_config *new_config = new_input_config(current_input_config->identifier);
|
|
|
|
|
|
|
|
if (strcasecmp(argv[0], "enabled") == 0) {
|
|
|
|
new_config->tap = LIBINPUT_CONFIG_TAP_ENABLED;
|
|
|
|
} else if (strcasecmp(argv[0], "disabled") == 0) {
|
|
|
|
new_config->tap = LIBINPUT_CONFIG_TAP_DISABLED;
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_INVALID, "tap", "Expected 'tap <enabled|disabled>'");
|
|
|
|
}
|
|
|
|
|
|
|
|
sway_log(L_DEBUG, "apply-tap for device: %s", current_input_config->identifier);
|
|
|
|
input_cmd_apply(new_config);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2016-03-26 22:31:53 +11:00
|
|
|
static struct cmd_results *cmd_include(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "include", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!load_include_configs(argv[0], config)) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "include", "Failed to include sub configuration file: %s", argv[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2016-01-17 21:53:37 +11:00
|
|
|
static struct cmd_results *cmd_input(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "input", EXPECTED_AT_LEAST, 2))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config->reading && strcmp("{", argv[1]) == 0) {
|
|
|
|
current_input_config = new_input_config(argv[0]);
|
|
|
|
sway_log(L_DEBUG, "entering input block: %s", current_input_config->identifier);
|
|
|
|
return cmd_results_new(CMD_BLOCK_INPUT, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 2) {
|
|
|
|
int argc_new = argc-2;
|
|
|
|
char **argv_new = argv+2;
|
|
|
|
|
|
|
|
struct cmd_results *res;
|
|
|
|
current_input_config = new_input_config(argv[0]);
|
|
|
|
if (strcasecmp("click_method", argv[1]) == 0) {
|
|
|
|
res = input_cmd_click_method(argc_new, argv_new);
|
|
|
|
} else if (strcasecmp("drag_lock", argv[1]) == 0) {
|
|
|
|
res = input_cmd_drag_lock(argc_new, argv_new);
|
|
|
|
} else if (strcasecmp("dwt", argv[1]) == 0) {
|
|
|
|
res = input_cmd_dwt(argc_new, argv_new);
|
|
|
|
} else if (strcasecmp("events", argv[1]) == 0) {
|
|
|
|
res = input_cmd_events(argc_new, argv_new);
|
|
|
|
} else if (strcasecmp("middle_emulation", argv[1]) == 0) {
|
|
|
|
res = input_cmd_middle_emulation(argc_new, argv_new);
|
|
|
|
} else if (strcasecmp("natural_scroll", argv[1]) == 0) {
|
|
|
|
res = input_cmd_natural_scroll(argc_new, argv_new);
|
|
|
|
} else if (strcasecmp("pointer_accel", argv[1]) == 0) {
|
|
|
|
res = input_cmd_pointer_accel(argc_new, argv_new);
|
|
|
|
} else if (strcasecmp("scroll_method", argv[1]) == 0) {
|
|
|
|
res = input_cmd_scroll_method(argc_new, argv_new);
|
|
|
|
} else if (strcasecmp("tap", argv[1]) == 0) {
|
|
|
|
res = input_cmd_tap(argc_new, argv_new);
|
|
|
|
} else {
|
|
|
|
res = cmd_results_new(CMD_INVALID, "input <device>", "Unknonwn command %s", argv[1]);
|
|
|
|
}
|
|
|
|
current_input_config = NULL;
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_BLOCK_INPUT, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_output(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "output", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
2015-08-23 01:18:55 +10:00
|
|
|
}
|
2015-11-29 19:28:52 +11:00
|
|
|
const char *name = argv[0];
|
|
|
|
|
2015-08-23 01:18:55 +10:00
|
|
|
struct output_config *output = calloc(1, sizeof(struct output_config));
|
|
|
|
output->x = output->y = output->width = output->height = -1;
|
2015-11-29 19:28:52 +11:00
|
|
|
output->name = strdup(name);
|
2015-11-30 08:17:42 +11:00
|
|
|
output->enabled = -1;
|
2015-08-23 01:18:55 +10:00
|
|
|
|
|
|
|
// TODO: atoi doesn't handle invalid numbers
|
|
|
|
|
|
|
|
int i;
|
|
|
|
for (i = 1; i < argc; ++i) {
|
2015-11-29 19:28:52 +11:00
|
|
|
const char *command = argv[i];
|
|
|
|
|
|
|
|
if (strcasecmp(command, "disable") == 0) {
|
2015-11-30 08:17:42 +11:00
|
|
|
output->enabled = 0;
|
2015-11-29 19:28:52 +11:00
|
|
|
} else if (strcasecmp(command, "resolution") == 0 || strcasecmp(command, "res") == 0) {
|
2015-11-30 00:46:30 +11:00
|
|
|
if (++i >= argc) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "output", "Missing resolution argument.");
|
|
|
|
}
|
|
|
|
char *res = argv[i];
|
2015-08-23 01:18:55 +10:00
|
|
|
char *x = strchr(res, 'x');
|
|
|
|
int width = -1, height = -1;
|
|
|
|
if (x != NULL) {
|
|
|
|
// Format is 1234x4321
|
|
|
|
*x = '\0';
|
|
|
|
width = atoi(res);
|
|
|
|
height = atoi(x + 1);
|
|
|
|
*x = 'x';
|
|
|
|
} else {
|
|
|
|
// Format is 1234 4321
|
|
|
|
width = atoi(res);
|
2015-11-30 00:46:30 +11:00
|
|
|
if (++i >= argc) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "output", "Missing resolution argument (height).");
|
|
|
|
}
|
|
|
|
res = argv[i];
|
2015-08-23 01:18:55 +10:00
|
|
|
height = atoi(res);
|
|
|
|
}
|
|
|
|
output->width = width;
|
|
|
|
output->height = height;
|
2015-11-29 19:28:52 +11:00
|
|
|
} else if (strcasecmp(command, "position") == 0 || strcasecmp(command, "pos") == 0) {
|
2015-11-30 00:46:30 +11:00
|
|
|
if (++i >= argc) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "output", "Missing position argument.");
|
|
|
|
}
|
|
|
|
char *res = argv[i];
|
2015-08-23 01:18:55 +10:00
|
|
|
char *c = strchr(res, ',');
|
|
|
|
int x = -1, y = -1;
|
|
|
|
if (c != NULL) {
|
|
|
|
// Format is 1234,4321
|
|
|
|
*c = '\0';
|
|
|
|
x = atoi(res);
|
|
|
|
y = atoi(c + 1);
|
|
|
|
*c = ',';
|
|
|
|
} else {
|
|
|
|
// Format is 1234 4321
|
|
|
|
x = atoi(res);
|
2015-11-30 00:46:30 +11:00
|
|
|
if (++i >= argc) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "output", "Missing position argument (y).");
|
|
|
|
}
|
|
|
|
res = argv[i];
|
2015-08-23 01:18:55 +10:00
|
|
|
y = atoi(res);
|
|
|
|
}
|
|
|
|
output->x = x;
|
|
|
|
output->y = y;
|
2015-11-29 19:28:52 +11:00
|
|
|
} else if (strcasecmp(command, "background") == 0 || strcasecmp(command, "bg") == 0) {
|
2015-11-20 10:25:15 +11:00
|
|
|
wordexp_t p;
|
2015-11-29 08:02:06 +11:00
|
|
|
if (++i >= argc) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "output", "Missing background file.");
|
|
|
|
}
|
|
|
|
char *src = argv[i];
|
|
|
|
if (++i >= argc) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "output", "Missing background scaling mode.");
|
|
|
|
}
|
|
|
|
char *mode = argv[i];
|
2015-11-20 10:25:15 +11:00
|
|
|
if (wordexp(src, &p, 0) != 0) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "output", "Invalid syntax (%s)", src);
|
|
|
|
}
|
|
|
|
src = p.we_wordv[0];
|
|
|
|
if (access(src, F_OK) == -1) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "output", "Background file unreadable (%s)", src);
|
|
|
|
}
|
|
|
|
for (char *m = mode; *m; ++m) *m = tolower(*m);
|
|
|
|
// Check mode
|
|
|
|
bool valid = false;
|
|
|
|
size_t j;
|
|
|
|
for (j = 0; j < sizeof(bg_options) / sizeof(char *); ++j) {
|
|
|
|
if (strcasecmp(mode, bg_options[j]) == 0) {
|
|
|
|
valid = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!valid) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "output", "Invalid background scaling mode.");
|
|
|
|
}
|
|
|
|
output->background = strdup(src);
|
|
|
|
output->background_option = strdup(mode);
|
|
|
|
wordfree(&p);
|
2015-08-23 01:18:55 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-29 23:51:42 +11:00
|
|
|
i = list_seq_find(config->output_configs, output_name_cmp, name);
|
|
|
|
if (i >= 0) {
|
2015-11-30 07:51:48 +11:00
|
|
|
// merge existing config
|
2015-11-16 21:40:24 +11:00
|
|
|
struct output_config *oc = config->output_configs->items[i];
|
2015-11-30 07:51:48 +11:00
|
|
|
merge_output_config(oc, output);
|
|
|
|
free_output_config(output);
|
|
|
|
output = oc;
|
|
|
|
} else {
|
|
|
|
list_add(config->output_configs, output);
|
2015-11-16 21:40:24 +11:00
|
|
|
}
|
2015-08-23 01:18:55 +10:00
|
|
|
|
2015-11-30 08:17:42 +11:00
|
|
|
sway_log(L_DEBUG, "Config stored for output %s (enabled:%d) (%d x %d @ %d, %d) (bg %s %s)",
|
|
|
|
output->name, output->enabled, output->width,
|
2015-11-30 00:23:27 +11:00
|
|
|
output->height, output->x, output->y, output->background,
|
|
|
|
output->background_option);
|
2015-08-23 01:18:55 +10:00
|
|
|
|
2015-10-22 01:34:12 +11:00
|
|
|
if (output->name) {
|
|
|
|
// Try to find the output container and apply configuration now. If
|
|
|
|
// this is during startup then there will be no container and config
|
|
|
|
// will be applied during normal "new output" event from wlc.
|
|
|
|
swayc_t *cont = NULL;
|
|
|
|
for (int i = 0; i < root_container.children->length; ++i) {
|
|
|
|
cont = root_container.children->items[i];
|
|
|
|
if (cont->name && strcmp(cont->name, output->name) == 0) {
|
|
|
|
apply_output_config(output, cont);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-23 01:18:55 +10:00
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_gaps(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "gaps", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
2015-08-19 07:53:57 +10:00
|
|
|
}
|
2015-11-04 11:05:19 +11:00
|
|
|
const char* expected_syntax =
|
2015-11-04 12:55:38 +11:00
|
|
|
"Expected 'gaps edge_gaps <on|off|toggle>' or "
|
|
|
|
"'gaps <inner|outer> <current|all|workspace> <set|plus|minus n>'";
|
2015-09-06 13:48:52 +10:00
|
|
|
const char *amount_str = argv[0];
|
|
|
|
// gaps amount
|
|
|
|
if (argc >= 1 && isdigit(*amount_str)) {
|
|
|
|
int amount = (int)strtol(amount_str, NULL, 10);
|
2015-11-04 10:41:28 +11:00
|
|
|
if (errno == ERANGE) {
|
2015-08-19 07:53:57 +10:00
|
|
|
errno = 0;
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_INVALID, "gaps", "Number is out out of range.");
|
2015-08-19 07:53:57 +10:00
|
|
|
}
|
2015-11-04 11:27:02 +11:00
|
|
|
config->gaps_inner = config->gaps_outer = amount;
|
2015-11-04 11:27:24 +11:00
|
|
|
arrange_windows(&root_container, -1, -1);
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-09-06 13:48:52 +10:00
|
|
|
}
|
|
|
|
// gaps inner|outer n
|
|
|
|
else if (argc >= 2 && isdigit((amount_str = argv[1])[0])) {
|
|
|
|
int amount = (int)strtol(amount_str, NULL, 10);
|
2015-11-04 10:41:28 +11:00
|
|
|
if (errno == ERANGE) {
|
2015-08-19 07:53:57 +10:00
|
|
|
errno = 0;
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_INVALID, "gaps", "Number is out out of range.");
|
2015-08-19 07:53:57 +10:00
|
|
|
}
|
2015-09-06 13:48:52 +10:00
|
|
|
const char *target_str = argv[0];
|
|
|
|
if (strcasecmp(target_str, "inner") == 0) {
|
2015-08-19 07:53:57 +10:00
|
|
|
config->gaps_inner = amount;
|
2015-09-06 13:48:52 +10:00
|
|
|
} else if (strcasecmp(target_str, "outer") == 0) {
|
2015-08-19 07:53:57 +10:00
|
|
|
config->gaps_outer = amount;
|
2015-09-06 13:48:52 +10:00
|
|
|
}
|
2015-11-04 11:27:24 +11:00
|
|
|
arrange_windows(&root_container, -1, -1);
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-11-04 12:55:38 +11:00
|
|
|
} else if (argc == 2 && strcasecmp(argv[0], "edge_gaps") == 0) {
|
|
|
|
// gaps edge_gaps <on|off|toggle>
|
|
|
|
if (strcasecmp(argv[1], "toggle") == 0) {
|
|
|
|
if (config->reading) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "gaps edge_gaps toggle",
|
|
|
|
"Can't be used in config file.");
|
|
|
|
}
|
|
|
|
config->edge_gaps = !config->edge_gaps;
|
|
|
|
} else {
|
|
|
|
config->edge_gaps =
|
|
|
|
(strcasecmp(argv[1], "yes") == 0 || strcasecmp(argv[1], "on") == 0);
|
|
|
|
}
|
|
|
|
arrange_windows(&root_container, -1, -1);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-09-06 13:48:52 +10:00
|
|
|
}
|
|
|
|
// gaps inner|outer current|all set|plus|minus n
|
2015-09-11 04:07:40 +10:00
|
|
|
if (argc < 4 || config->reading) {
|
2015-11-04 11:05:19 +11:00
|
|
|
return cmd_results_new(CMD_INVALID, "gaps", expected_syntax);
|
2015-09-06 13:48:52 +10:00
|
|
|
}
|
|
|
|
// gaps inner|outer ...
|
|
|
|
const char *inout_str = argv[0];
|
|
|
|
enum {INNER, OUTER} inout;
|
|
|
|
if (strcasecmp(inout_str, "inner") == 0) {
|
|
|
|
inout = INNER;
|
|
|
|
} else if (strcasecmp(inout_str, "outer") == 0) {
|
|
|
|
inout = OUTER;
|
|
|
|
} else {
|
2015-11-04 11:05:19 +11:00
|
|
|
return cmd_results_new(CMD_INVALID, "gaps", expected_syntax);
|
2015-09-06 13:48:52 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
// gaps ... current|all ...
|
|
|
|
const char *target_str = argv[1];
|
|
|
|
enum {CURRENT, WORKSPACE, ALL} target;
|
|
|
|
if (strcasecmp(target_str, "current") == 0) {
|
|
|
|
target = CURRENT;
|
|
|
|
} else if (strcasecmp(target_str, "all") == 0) {
|
|
|
|
target = ALL;
|
2015-09-06 23:52:20 +10:00
|
|
|
} else if (strcasecmp(target_str, "workspace") == 0) {
|
2015-09-06 13:48:52 +10:00
|
|
|
if (inout == OUTER) {
|
|
|
|
target = CURRENT;
|
2015-08-19 07:53:57 +10:00
|
|
|
} else {
|
2015-09-06 13:48:52 +10:00
|
|
|
// Set gap for views in workspace
|
|
|
|
target = WORKSPACE;
|
2015-08-19 07:53:57 +10:00
|
|
|
}
|
|
|
|
} else {
|
2015-11-04 11:05:19 +11:00
|
|
|
return cmd_results_new(CMD_INVALID, "gaps", expected_syntax);
|
2015-08-19 07:53:57 +10:00
|
|
|
}
|
2015-09-06 13:48:52 +10:00
|
|
|
|
|
|
|
// gaps ... n
|
|
|
|
amount_str = argv[3];
|
|
|
|
int amount = (int)strtol(amount_str, NULL, 10);
|
2015-11-04 10:41:28 +11:00
|
|
|
if (errno == ERANGE) {
|
2015-09-06 13:48:52 +10:00
|
|
|
errno = 0;
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_INVALID, "gaps", "Number is out out of range.");
|
2015-09-06 13:48:52 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
// gaps ... set|plus|minus ...
|
|
|
|
const char *method_str = argv[2];
|
|
|
|
enum {SET, ADD} method;
|
|
|
|
if (strcasecmp(method_str, "set") == 0) {
|
|
|
|
method = SET;
|
|
|
|
} else if (strcasecmp(method_str, "plus") == 0) {
|
|
|
|
method = ADD;
|
|
|
|
} else if (strcasecmp(method_str, "minus") == 0) {
|
|
|
|
method = ADD;
|
|
|
|
amount *= -1;
|
|
|
|
} else {
|
2015-11-04 11:05:19 +11:00
|
|
|
return cmd_results_new(CMD_INVALID, "gaps", expected_syntax);
|
2015-09-06 13:48:52 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
if (target == CURRENT) {
|
|
|
|
swayc_t *cont;
|
|
|
|
if (inout == OUTER) {
|
|
|
|
if ((cont = swayc_active_workspace()) == NULL) {
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_FAILURE, "gaps", "There's no active workspace.");
|
2015-09-06 13:48:52 +10:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ((cont = get_focused_view(&root_container))->type != C_VIEW) {
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_FAILURE, "gaps", "Currently focused item is not a view.");
|
2015-09-06 13:48:52 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
cont->gaps = swayc_gap(cont);
|
|
|
|
if (method == SET) {
|
|
|
|
cont->gaps = amount;
|
|
|
|
} else if ((cont->gaps += amount) < 0) {
|
|
|
|
cont->gaps = 0;
|
|
|
|
}
|
|
|
|
arrange_windows(cont->parent, -1, -1);
|
|
|
|
} else if (inout == OUTER) {
|
|
|
|
//resize all workspace.
|
|
|
|
int i,j;
|
|
|
|
for (i = 0; i < root_container.children->length; ++i) {
|
|
|
|
swayc_t *op = root_container.children->items[i];
|
|
|
|
for (j = 0; j < op->children->length; ++j) {
|
|
|
|
swayc_t *ws = op->children->items[j];
|
|
|
|
if (method == SET) {
|
|
|
|
ws->gaps = amount;
|
|
|
|
} else if ((ws->gaps += amount) < 0) {
|
|
|
|
ws->gaps = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
arrange_windows(&root_container, -1, -1);
|
|
|
|
} else {
|
|
|
|
// Resize gaps for all views in workspace
|
|
|
|
swayc_t *top;
|
|
|
|
if (target == WORKSPACE) {
|
|
|
|
if ((top = swayc_active_workspace()) == NULL) {
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_FAILURE, "gaps", "There's currently no active workspace.");
|
2015-09-06 13:48:52 +10:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
top = &root_container;
|
|
|
|
}
|
|
|
|
int top_gap = top->gaps;
|
2015-09-14 09:46:16 +10:00
|
|
|
container_map(top, method == SET ? set_gaps : add_gaps, &amount);
|
2015-09-06 13:48:52 +10:00
|
|
|
top->gaps = top_gap;
|
|
|
|
arrange_windows(top, -1, -1);
|
|
|
|
}
|
2015-09-14 09:46:16 +10:00
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-19 07:53:57 +10:00
|
|
|
}
|
|
|
|
|
2016-03-20 22:29:47 +11:00
|
|
|
static struct cmd_results *cmd_smart_gaps(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "smart_gaps", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp(argv[0], "on") == 0) {
|
|
|
|
config->smart_gaps = true;
|
|
|
|
} else if (strcasecmp(argv[0], "off") == 0) {
|
|
|
|
config->smart_gaps = false;
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_INVALID, "smart_gaps", "Expected 'smart_gaps <on|off>'");
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2016-03-29 22:49:28 +11:00
|
|
|
static struct cmd_results *cmd_hide_edge_borders(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "hide_edge_borders", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp(argv[0], "none") == 0) {
|
|
|
|
config->hide_edge_borders = E_NONE;
|
|
|
|
} else if (strcasecmp(argv[0], "vertical") == 0) {
|
|
|
|
config->hide_edge_borders = E_VERTICAL;
|
|
|
|
} else if (strcasecmp(argv[0], "horizontal") == 0) {
|
|
|
|
config->hide_edge_borders = E_HORIZONTAL;
|
|
|
|
} else if (strcasecmp(argv[0], "both") == 0) {
|
|
|
|
config->hide_edge_borders = E_BOTH;
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_INVALID, "hide_edge_borders",
|
|
|
|
"Expected 'hide_edge_borders <none|vertical|horizontal|both>'");
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_kill(int argc, char **argv) {
|
|
|
|
if (config->reading) return cmd_results_new(CMD_FAILURE, "kill", "Can't be used in config file.");
|
|
|
|
if (!config->active) return cmd_results_new(CMD_FAILURE, "kill", "Can only be used when sway is running.");
|
|
|
|
|
2015-08-17 02:41:41 +10:00
|
|
|
swayc_t *view = get_focused_container(&root_container);
|
2015-08-17 02:54:37 +10:00
|
|
|
wlc_view_close(view->handle);
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-17 02:41:41 +10:00
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_layout(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if (config->reading) return cmd_results_new(CMD_FAILURE, "layout", "Can't be used in config file.");
|
|
|
|
if (!config->active) return cmd_results_new(CMD_FAILURE, "layout", "Can only be used when sway is running.");
|
|
|
|
if ((error = checkarg(argc, "layout", EXPECTED_MORE_THAN, 0))) {
|
|
|
|
return error;
|
2015-08-10 04:35:59 +10:00
|
|
|
}
|
|
|
|
swayc_t *parent = get_focused_container(&root_container);
|
|
|
|
while (parent->type == C_VIEW) {
|
|
|
|
parent = parent->parent;
|
|
|
|
}
|
2015-08-18 21:19:20 +10:00
|
|
|
|
2015-08-10 04:35:59 +10:00
|
|
|
if (strcasecmp(argv[0], "splith") == 0) {
|
|
|
|
parent->layout = L_HORIZ;
|
|
|
|
} else if (strcasecmp(argv[0], "splitv") == 0) {
|
|
|
|
parent->layout = L_VERT;
|
|
|
|
} else if (strcasecmp(argv[0], "toggle") == 0 && argc == 2 && strcasecmp(argv[1], "split") == 0) {
|
|
|
|
if (parent->layout == L_VERT) {
|
|
|
|
parent->layout = L_HORIZ;
|
|
|
|
} else {
|
|
|
|
parent->layout = L_VERT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
arrange_windows(parent, parent->width, parent->height);
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-10 04:35:59 +10:00
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_reload(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if (config->reading) return cmd_results_new(CMD_FAILURE, "reload", "Can't be used in config file.");
|
|
|
|
if ((error = checkarg(argc, "reload", EXPECTED_EQUAL_TO, 0))) {
|
|
|
|
return error;
|
2015-08-11 05:22:22 +10:00
|
|
|
}
|
2016-03-26 23:02:16 +11:00
|
|
|
if (!load_main_config(config->current_config, true)) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "reload", "Error(s) reloading config.");
|
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
|
2016-02-25 04:52:57 +11:00
|
|
|
load_swaybars();
|
2015-12-19 03:43:03 +11:00
|
|
|
|
2015-08-11 05:38:15 +10:00
|
|
|
arrange_windows(&root_container, -1, -1);
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-11 04:53:43 +10:00
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_resize(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if (config->reading) return cmd_results_new(CMD_FAILURE, "resize", "Can't be used in config file.");
|
|
|
|
if (!config->active) return cmd_results_new(CMD_FAILURE, "resize", "Can only be used when sway is running.");
|
|
|
|
if ((error = checkarg(argc, "resize", EXPECTED_AT_LEAST, 3))) {
|
|
|
|
return error;
|
2015-08-21 02:30:32 +10:00
|
|
|
}
|
|
|
|
char *end;
|
|
|
|
int amount = (int)strtol(argv[2], &end, 10);
|
|
|
|
if (errno == ERANGE || amount == 0) {
|
|
|
|
errno = 0;
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_INVALID, "resize", "Number is out of range.");
|
2015-08-21 02:30:32 +10:00
|
|
|
}
|
2015-08-22 13:26:11 +10:00
|
|
|
|
2015-08-21 02:30:32 +10:00
|
|
|
if (strcmp(argv[0], "shrink") != 0 && strcmp(argv[0], "grow") != 0) {
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_INVALID, "resize",
|
|
|
|
"Expected 'resize <shrink|grow> <width|height> <amount>'");
|
2015-08-21 02:30:32 +10:00
|
|
|
}
|
2015-08-22 13:26:11 +10:00
|
|
|
|
2015-08-21 02:30:32 +10:00
|
|
|
if (strcmp(argv[0], "shrink") == 0) {
|
|
|
|
amount *= -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(argv[1], "width") == 0) {
|
2015-09-11 04:07:40 +10:00
|
|
|
resize_tiled(amount, true);
|
2015-08-21 02:30:32 +10:00
|
|
|
} else if (strcmp(argv[1], "height") == 0) {
|
2015-09-11 04:07:40 +10:00
|
|
|
resize_tiled(amount, false);
|
|
|
|
} else {
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_INVALID, "resize",
|
|
|
|
"Expected 'resize <shrink|grow> <width|height> <amount>'");
|
2015-08-21 02:30:32 +10:00
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-21 02:30:32 +10:00
|
|
|
}
|
|
|
|
|
2015-12-14 12:39:24 +11:00
|
|
|
static struct cmd_results *cmd_bar(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
2015-12-22 00:33:27 +11:00
|
|
|
if ((error = checkarg(argc, "bar", EXPECTED_AT_LEAST, 1))) {
|
2015-12-14 12:39:24 +11:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2015-12-22 00:33:27 +11:00
|
|
|
if (config->reading && strcmp("{", argv[0]) != 0) {
|
2015-12-14 12:39:24 +11:00
|
|
|
return cmd_results_new(CMD_INVALID, "bar",
|
|
|
|
"Expected '{' at start of bar config definition.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config->reading) {
|
2015-12-22 00:33:27 +11:00
|
|
|
if (argc > 1) {
|
|
|
|
if (strcasecmp("mode", argv[0]) == 0) {
|
|
|
|
return bar_cmd_mode(argc-1, argv + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp("hidden_state", argv[0]) == 0) {
|
|
|
|
return bar_cmd_hidden_state(argc-1, argv + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-14 12:39:24 +11:00
|
|
|
return cmd_results_new(CMD_FAILURE, "bar", "Can only be used in config file.");
|
|
|
|
}
|
|
|
|
|
2015-12-15 10:35:18 +11:00
|
|
|
// Create new bar with default values
|
|
|
|
struct bar_config *bar = default_bar_config();
|
2015-12-14 12:39:24 +11:00
|
|
|
|
2015-12-15 02:24:01 +11:00
|
|
|
// set bar id
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < config->bars->length; ++i) {
|
|
|
|
if (bar == config->bars->items[i]) {
|
2016-01-24 08:35:32 +11:00
|
|
|
const int len = 5 + numlen(i); // "bar-" + i + \0
|
2015-12-15 02:24:01 +11:00
|
|
|
bar->id = malloc(len * sizeof(char));
|
|
|
|
snprintf(bar->id, len, "bar-%d", i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-14 12:39:24 +11:00
|
|
|
// Set current bar
|
|
|
|
config->current_bar = bar;
|
2015-12-15 02:24:01 +11:00
|
|
|
sway_log(L_DEBUG, "Configuring bar %s", bar->id);
|
2015-12-14 12:39:24 +11:00
|
|
|
return cmd_results_new(CMD_BLOCK_BAR, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-09-14 09:46:16 +10:00
|
|
|
static swayc_t *fetch_view_from_scratchpad() {
|
2015-08-30 12:14:13 +10:00
|
|
|
if (sp_index >= scratchpad->length) {
|
|
|
|
sp_index = 0;
|
|
|
|
}
|
|
|
|
swayc_t *view = scratchpad->items[sp_index++];
|
|
|
|
|
|
|
|
if (wlc_view_get_output(view->handle) != swayc_active_output()->handle) {
|
|
|
|
wlc_view_set_output(view->handle, swayc_active_output()->handle);
|
|
|
|
}
|
|
|
|
if (!view->is_floating) {
|
|
|
|
view->width = swayc_active_workspace()->width/2;
|
|
|
|
view->height = swayc_active_workspace()->height/2;
|
|
|
|
view->x = (swayc_active_workspace()->width - view->width)/2;
|
|
|
|
view->y = (swayc_active_workspace()->height - view->height)/2;
|
|
|
|
}
|
|
|
|
if (swayc_active_workspace()->width < view->x + 20 || view->x + view->width < 20) {
|
|
|
|
view->x = (swayc_active_workspace()->width - view->width)/2;
|
|
|
|
}
|
|
|
|
if (swayc_active_workspace()->height < view->y + 20 || view->y + view->height < 20) {
|
|
|
|
view->y = (swayc_active_workspace()->height - view->height)/2;
|
|
|
|
}
|
|
|
|
|
|
|
|
add_floating(swayc_active_workspace(), view);
|
|
|
|
wlc_view_set_mask(view->handle, VISIBLE);
|
|
|
|
view->visible = true;
|
|
|
|
arrange_windows(swayc_active_workspace(), -1, -1);
|
|
|
|
set_focused_container(view);
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
|
|
|
void remove_view_from_scratchpad(swayc_t *view) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < scratchpad->length; i++) {
|
|
|
|
if (scratchpad->items[i] == view) {
|
|
|
|
if (sp_index == 0) {
|
|
|
|
sp_index = scratchpad->length - 1;
|
|
|
|
} else {
|
|
|
|
sp_index--;
|
|
|
|
}
|
|
|
|
list_del(scratchpad, sp_index);
|
|
|
|
sp_view = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_scratchpad(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if (config->reading) return cmd_results_new(CMD_FAILURE, "scratchpad", "Can't be used in config file.");
|
|
|
|
if (!config->active) return cmd_results_new(CMD_FAILURE, "scratchpad", "Can only be used when sway is running.");
|
|
|
|
if ((error = checkarg(argc, "scratchpad", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
2015-08-29 15:33:33 +10:00
|
|
|
}
|
2015-08-30 12:14:13 +10:00
|
|
|
|
|
|
|
if (strcasecmp(argv[0], "show") == 0 && scratchpad->length > 0) {
|
|
|
|
if (!sp_view) {
|
|
|
|
sp_view = fetch_view_from_scratchpad();
|
|
|
|
} else {
|
|
|
|
if (swayc_active_workspace() != sp_view->parent) {
|
|
|
|
hide_view_in_scratchpad(sp_view);
|
|
|
|
if (sp_index == 0) {
|
|
|
|
sp_index = scratchpad->length;
|
|
|
|
}
|
|
|
|
sp_index--;
|
|
|
|
sp_view = fetch_view_from_scratchpad();
|
|
|
|
} else {
|
|
|
|
hide_view_in_scratchpad(sp_view);
|
|
|
|
sp_view = NULL;
|
2015-08-29 15:33:33 +10:00
|
|
|
}
|
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-29 15:33:33 +10:00
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_FAILURE, "scratchpad", "Expected 'scratchpad show' when scratchpad is not empty.");
|
2015-08-29 15:33:33 +10:00
|
|
|
}
|
|
|
|
|
2015-09-09 01:54:57 +10:00
|
|
|
// sort in order of longest->shortest
|
replace non-standard qsort_r with qsort
I've tried to make as few changes, as possible.
Usually the reason for using qsort_r is, that you can pass an extra userdata pointer to the
compare function. However, in sway list_sort wrapped qsort_r and always called a wrapper
function for comparing, the wrapper function then had the real compare function as argument.
The only thing, that the wrapper function does, is dereferencing the 'left' and 'right' function
arguments before passing them to the real compare function.
I have renamed list_sort to list_qsort to avoid confusion (so nobody tries to use list_qsort like
list_sort) and removed the wrapper functionality. Now the dereferencing must be done in the
compare function, that gets passed.
Some compare functions were used in both list_sort and list_seq_find. To make the difference
clear, I've added a '_qsort' suffix to the compare functions, that are intended to be used with
the new list_qsort. (In other words: list_qsort is not compatible anymore with list_seq_find).
- Changed and renamed function (it isn't used anywhere but in commands.c, and only for sorting):
compare_set -> compare_set_qsort
- New wrapper functions:
sway_binding_cmp_qsort (for sway_binding_cmp)
sway_mouse_binding_cmp_qsort (for sway_mouse_binding_cmp)
2015-12-22 10:38:18 +11:00
|
|
|
static int compare_set_qsort(const void *_l, const void *_r) {
|
|
|
|
struct sway_variable const *l = *(void **)_l;
|
|
|
|
struct sway_variable const *r = *(void **)_r;
|
2015-11-24 19:30:02 +11:00
|
|
|
return strlen(r->name) - strlen(l->name);
|
2015-09-09 01:54:57 +10:00
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_set(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if (!config->reading) return cmd_results_new(CMD_FAILURE, "set", "Can only be used in config file.");
|
|
|
|
if ((error = checkarg(argc, "set", EXPECTED_AT_LEAST, 2))) {
|
|
|
|
return error;
|
2015-08-09 23:23:10 +10:00
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
|
2015-09-09 01:54:57 +10:00
|
|
|
struct sway_variable *var = NULL;
|
|
|
|
// Find old variable if it exists
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < config->symbols->length; ++i) {
|
|
|
|
var = config->symbols->items[i];
|
|
|
|
if (strcmp(var->name, argv[0]) == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
var = NULL;
|
|
|
|
}
|
|
|
|
if (var) {
|
|
|
|
free(var->value);
|
|
|
|
} else {
|
|
|
|
var = malloc(sizeof(struct sway_variable));
|
|
|
|
var->name = strdup(argv[0]);
|
|
|
|
list_add(config->symbols, var);
|
replace non-standard qsort_r with qsort
I've tried to make as few changes, as possible.
Usually the reason for using qsort_r is, that you can pass an extra userdata pointer to the
compare function. However, in sway list_sort wrapped qsort_r and always called a wrapper
function for comparing, the wrapper function then had the real compare function as argument.
The only thing, that the wrapper function does, is dereferencing the 'left' and 'right' function
arguments before passing them to the real compare function.
I have renamed list_sort to list_qsort to avoid confusion (so nobody tries to use list_qsort like
list_sort) and removed the wrapper functionality. Now the dereferencing must be done in the
compare function, that gets passed.
Some compare functions were used in both list_sort and list_seq_find. To make the difference
clear, I've added a '_qsort' suffix to the compare functions, that are intended to be used with
the new list_qsort. (In other words: list_qsort is not compatible anymore with list_seq_find).
- Changed and renamed function (it isn't used anywhere but in commands.c, and only for sorting):
compare_set -> compare_set_qsort
- New wrapper functions:
sway_binding_cmp_qsort (for sway_binding_cmp)
sway_mouse_binding_cmp_qsort (for sway_mouse_binding_cmp)
2015-12-22 10:38:18 +11:00
|
|
|
list_qsort(config->symbols, compare_set_qsort);
|
2015-09-09 01:54:57 +10:00
|
|
|
}
|
2015-09-14 09:46:16 +10:00
|
|
|
var->value = join_args(argv + 1, argc - 1);
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-09 23:23:10 +10:00
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *_do_split(int argc, char **argv, int layout) {
|
2015-08-15 05:42:19 +10:00
|
|
|
char *name = layout == L_VERT ? "splitv" :
|
|
|
|
layout == L_HORIZ ? "splith" : "split";
|
2015-10-22 23:14:13 +11:00
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if (config->reading) return cmd_results_new(CMD_FAILURE, name, "Can't be used in config file.");
|
|
|
|
if (!config->active) return cmd_results_new(CMD_FAILURE, name, "Can only be used when sway is running.");
|
|
|
|
if ((error = checkarg(argc, name, EXPECTED_EQUAL_TO, 0))) {
|
|
|
|
return error;
|
2015-08-10 04:35:56 +10:00
|
|
|
}
|
2015-08-10 09:27:25 +10:00
|
|
|
swayc_t *focused = get_focused_container(&root_container);
|
2015-08-15 05:42:19 +10:00
|
|
|
|
2015-08-22 03:28:37 +10:00
|
|
|
// Case of floating window, dont split
|
|
|
|
if (focused->is_floating) {
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-22 03:28:37 +10:00
|
|
|
}
|
|
|
|
/* Case that focus is on an workspace with 0/1 children.change its layout */
|
2015-08-16 04:19:44 +10:00
|
|
|
if (focused->type == C_WORKSPACE && focused->children->length <= 1) {
|
|
|
|
sway_log(L_DEBUG, "changing workspace layout");
|
2015-08-15 05:42:19 +10:00
|
|
|
focused->layout = layout;
|
2015-08-18 21:19:20 +10:00
|
|
|
} else if (focused->type != C_WORKSPACE && focused->parent->children->length == 1) {
|
|
|
|
/* Case of no siblings. change parent layout */
|
2015-08-16 04:19:44 +10:00
|
|
|
sway_log(L_DEBUG, "changing container layout");
|
2015-08-15 05:42:19 +10:00
|
|
|
focused->parent->layout = layout;
|
2015-08-18 21:19:20 +10:00
|
|
|
} else {
|
|
|
|
/* regular case where new split container is build around focused container
|
|
|
|
* or in case of workspace, container inherits its children */
|
2015-08-16 04:19:44 +10:00
|
|
|
sway_log(L_DEBUG, "Adding new container around current focused container");
|
|
|
|
swayc_t *parent = new_container(focused, layout);
|
2015-08-18 17:28:44 +10:00
|
|
|
set_focused_container(focused);
|
2015-08-16 04:19:44 +10:00
|
|
|
arrange_windows(parent, -1, -1);
|
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-10 04:35:56 +10:00
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_split(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if (config->reading) return cmd_results_new(CMD_FAILURE, "split", "Can't be used in config file.");
|
|
|
|
if (!config->active) return cmd_results_new(CMD_FAILURE, "split", "Can only be used when sway is running.");
|
|
|
|
if ((error = checkarg(argc, "split", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
2015-08-17 01:01:01 +10:00
|
|
|
}
|
|
|
|
if (strcasecmp(argv[0], "v") == 0 || strcasecmp(argv[0], "vertical") == 0) {
|
2015-09-14 09:46:16 +10:00
|
|
|
_do_split(argc - 1, argv + 1, L_VERT);
|
2015-08-17 01:01:01 +10:00
|
|
|
} else if (strcasecmp(argv[0], "h") == 0 || strcasecmp(argv[0], "horizontal") == 0) {
|
2015-09-14 09:46:16 +10:00
|
|
|
_do_split(argc - 1, argv + 1, L_HORIZ);
|
2015-12-30 18:34:58 +11:00
|
|
|
} else if (strcasecmp(argv[0], "t") == 0 || strcasecmp(argv[0], "toggle") == 0) {
|
|
|
|
swayc_t *focused = get_focused_container(&root_container);
|
|
|
|
if (focused->parent->layout == L_VERT) {
|
|
|
|
_do_split(argc - 1, argv + 1, L_HORIZ);
|
|
|
|
} else {
|
|
|
|
_do_split(argc - 1, argv + 1, L_VERT);
|
|
|
|
}
|
2015-08-17 01:01:01 +10:00
|
|
|
} else {
|
2015-10-22 23:14:13 +11:00
|
|
|
error = cmd_results_new(CMD_FAILURE, "split",
|
|
|
|
"Invalid split command (expected either horiziontal or vertical).");
|
|
|
|
return error;
|
2015-08-17 01:01:01 +10:00
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-17 01:01:01 +10:00
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_splitv(int argc, char **argv) {
|
2015-09-14 09:46:16 +10:00
|
|
|
return _do_split(argc, argv, L_VERT);
|
2015-08-10 09:27:25 +10:00
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_splith(int argc, char **argv) {
|
2015-09-14 09:46:16 +10:00
|
|
|
return _do_split(argc, argv, L_HORIZ);
|
2015-08-10 09:27:25 +10:00
|
|
|
}
|
2015-08-10 04:35:56 +10:00
|
|
|
|
2015-12-30 18:34:58 +11:00
|
|
|
static struct cmd_results *cmd_splitt(int argc, char **argv) {
|
|
|
|
swayc_t *focused = get_focused_container(&root_container);
|
|
|
|
if (focused->parent->layout == L_VERT) {
|
|
|
|
return _do_split(argc, argv, L_HORIZ);
|
|
|
|
} else {
|
|
|
|
return _do_split(argc, argv, L_VERT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-27 09:53:20 +11:00
|
|
|
static struct cmd_results *cmd_sticky(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if (config->reading) return cmd_results_new(CMD_FAILURE, "sticky", "Can't be used in config file.");
|
|
|
|
if (!config->active) return cmd_results_new(CMD_FAILURE, "sticky", "Can only be used when sway is running.");
|
|
|
|
if ((error = checkarg(argc, "sticky", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
char *action = argv[0];
|
|
|
|
swayc_t *cont = get_focused_view(&root_container);
|
|
|
|
if (strcmp(action, "toggle") == 0) {
|
|
|
|
cont->sticky = !cont->sticky;
|
|
|
|
} else if (strcmp(action, "enable") == 0) {
|
|
|
|
cont->sticky = true;
|
|
|
|
} else if (strcmp(action, "disable") == 0) {
|
|
|
|
cont->sticky = false;
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "sticky",
|
|
|
|
"Expected 'sticky enable|disable|toggle'");
|
|
|
|
}
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_log_colors(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if (!config->reading) return cmd_results_new(CMD_FAILURE, "log_colors", "Can only be used in config file.");
|
|
|
|
if ((error = checkarg(argc, "log_colors", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
2015-08-10 10:20:40 +10:00
|
|
|
}
|
2015-09-11 04:07:40 +10:00
|
|
|
if (strcasecmp(argv[0], "no") == 0) {
|
|
|
|
sway_log_colors(0);
|
2015-09-15 23:56:51 +10:00
|
|
|
} else if (strcasecmp(argv[0], "yes") == 0) {
|
2015-09-11 04:07:40 +10:00
|
|
|
sway_log_colors(1);
|
|
|
|
} else {
|
2015-10-22 23:14:13 +11:00
|
|
|
error = cmd_results_new(CMD_FAILURE, "log_colors",
|
|
|
|
"Invalid log_colors command (expected `yes` or `no`, got '%s')", argv[0]);
|
|
|
|
return error;
|
2015-08-10 10:20:40 +10:00
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-10 10:20:40 +10:00
|
|
|
}
|
|
|
|
|
2016-01-27 16:57:55 +11:00
|
|
|
static struct cmd_results *cmd_font(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "font", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *font = join_args(argv, argc);
|
2016-03-29 04:38:19 +11:00
|
|
|
free(config->font);
|
2016-01-27 16:57:55 +11:00
|
|
|
if (strlen(font) > 6 && strncmp("pango:", font, 6) == 0) {
|
2016-03-29 04:38:19 +11:00
|
|
|
config->font = strdup(font + 6);
|
2016-01-27 16:57:55 +11:00
|
|
|
free(font);
|
2016-03-29 04:38:19 +11:00
|
|
|
} else {
|
|
|
|
config->font = font;
|
2016-01-27 16:57:55 +11:00
|
|
|
}
|
|
|
|
|
2016-03-29 23:47:30 +11:00
|
|
|
config->font_height = get_font_text_height(config->font);
|
|
|
|
|
2016-03-29 04:38:19 +11:00
|
|
|
sway_log(L_DEBUG, "Settings font %s", config->font);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2016-01-27 16:57:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-18 05:27:01 +11:00
|
|
|
static struct cmd_results *cmd_for_window(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "for_window", EXPECTED_AT_LEAST, 2))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
// add command to a criteria/command pair that is run against views when they appear.
|
|
|
|
char *criteria = argv[0], *cmdlist = join_args(argv + 1, argc - 1);
|
|
|
|
|
|
|
|
struct criteria *crit = malloc(sizeof(struct criteria));
|
|
|
|
crit->crit_raw = strdup(criteria);
|
|
|
|
crit->cmdlist = cmdlist;
|
|
|
|
crit->tokens = create_list();
|
|
|
|
char *err_str = extract_crit_tokens(crit->tokens, crit->crit_raw);
|
|
|
|
|
|
|
|
if (err_str) {
|
|
|
|
error = cmd_results_new(CMD_INVALID, "for_window", err_str);
|
|
|
|
free(err_str);
|
|
|
|
free_criteria(crit);
|
|
|
|
} else if (crit->tokens->length == 0) {
|
|
|
|
error = cmd_results_new(CMD_INVALID, "for_window", "Found no name/value pairs in criteria");
|
|
|
|
free_criteria(crit);
|
|
|
|
} else if (list_seq_find(config->criteria, criteria_cmp, crit) != -1) {
|
|
|
|
sway_log(L_DEBUG, "for_window: Duplicate, skipping.");
|
|
|
|
free_criteria(crit);
|
|
|
|
} else {
|
|
|
|
sway_log(L_DEBUG, "for_window: '%s' -> '%s' added", crit->crit_raw, crit->cmdlist);
|
|
|
|
list_add(config->criteria, crit);
|
|
|
|
}
|
|
|
|
return error ? error : cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_fullscreen(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if (config->reading) return cmd_results_new(CMD_FAILURE, "fullscreen", "Can't be used in config file.");
|
|
|
|
if (!config->active) return cmd_results_new(CMD_FAILURE, "fullscreen", "Can only be used when sway is running.");
|
|
|
|
if ((error = checkarg(argc, "fullscreen", EXPECTED_AT_LEAST, 0))) {
|
|
|
|
return error;
|
2015-08-10 10:23:56 +10:00
|
|
|
}
|
2015-08-19 04:22:52 +10:00
|
|
|
swayc_t *container = get_focused_view(&root_container);
|
2015-12-30 13:41:01 +11:00
|
|
|
if(container->type != C_VIEW){
|
|
|
|
return cmd_results_new(CMD_INVALID, "fullscreen", "Only views can fullscreen");
|
|
|
|
}
|
2015-12-13 23:58:00 +11:00
|
|
|
swayc_t *workspace = swayc_parent_by_type(container, C_WORKSPACE);
|
2015-08-22 03:45:18 +10:00
|
|
|
bool current = swayc_is_fullscreen(container);
|
2015-08-10 10:49:19 +10:00
|
|
|
wlc_view_set_state(container->handle, WLC_BIT_FULLSCREEN, !current);
|
2015-08-20 22:06:22 +10:00
|
|
|
// Resize workspace if going from fullscreen -> notfullscreen
|
|
|
|
// otherwise just resize container
|
2016-01-05 10:55:29 +11:00
|
|
|
if (!current) {
|
2015-12-13 23:58:00 +11:00
|
|
|
arrange_windows(workspace, -1, -1);
|
|
|
|
workspace->fullscreen = container;
|
|
|
|
} else {
|
|
|
|
arrange_windows(container, -1, -1);
|
|
|
|
workspace->fullscreen = NULL;
|
2015-08-16 07:32:14 +10:00
|
|
|
}
|
2015-08-10 10:23:56 +10:00
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-10 10:23:56 +10:00
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_workspace(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "workspace", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
2015-08-11 06:31:23 +10:00
|
|
|
}
|
2015-12-18 08:28:41 +11:00
|
|
|
if (argc == 1 || (argc == 2 && strcasecmp(argv[0], "number") == 0) ) {
|
2015-09-11 04:07:40 +10:00
|
|
|
if (config->reading || !config->active) {
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_DEFER, "workspace", NULL);
|
2015-09-11 04:07:40 +10:00
|
|
|
}
|
2015-09-14 09:46:16 +10:00
|
|
|
// Handle workspace next/prev
|
|
|
|
swayc_t *ws = NULL;
|
2015-12-18 08:28:41 +11:00
|
|
|
if (argc == 2) {
|
|
|
|
if (!(ws=workspace_by_number(argv[1]))) {
|
|
|
|
ws = workspace_create(argv[1]);
|
|
|
|
}
|
|
|
|
}else if (strcasecmp(argv[0], "next") == 0) {
|
2015-09-14 09:46:16 +10:00
|
|
|
ws = workspace_next();
|
|
|
|
} else if (strcasecmp(argv[0], "prev") == 0) {
|
|
|
|
ws = workspace_prev();
|
|
|
|
} else if (strcasecmp(argv[0], "next_on_output") == 0) {
|
|
|
|
ws = workspace_output_next();
|
|
|
|
} else if (strcasecmp(argv[0], "prev_on_output") == 0) {
|
|
|
|
ws = workspace_output_prev();
|
|
|
|
} else if (strcasecmp(argv[0], "back_and_forth") == 0) {
|
|
|
|
if (prev_workspace_name) {
|
|
|
|
if (!(ws = workspace_by_name(prev_workspace_name))) {
|
|
|
|
ws = workspace_create(prev_workspace_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!(ws= workspace_by_name(argv[0]))) {
|
|
|
|
ws = workspace_create(argv[0]);
|
|
|
|
}
|
|
|
|
}
|
2015-10-26 22:20:32 +11:00
|
|
|
swayc_t *old_output = swayc_active_output();
|
2015-09-14 09:46:16 +10:00
|
|
|
workspace_switch(ws);
|
2015-10-26 22:20:32 +11:00
|
|
|
swayc_t *new_output = swayc_active_output();
|
|
|
|
|
|
|
|
if (config->mouse_warping && old_output != new_output) {
|
|
|
|
swayc_t *focused = get_focused_view(ws);
|
|
|
|
if (focused && focused->type == C_VIEW) {
|
|
|
|
center_pointer_on(focused);
|
|
|
|
}
|
|
|
|
}
|
2015-08-18 10:34:53 +10:00
|
|
|
} else {
|
|
|
|
if (strcasecmp(argv[1], "output") == 0) {
|
2015-10-22 23:14:13 +11:00
|
|
|
if ((error = checkarg(argc, "workspace", EXPECTED_EQUAL_TO, 3))) {
|
|
|
|
return error;
|
2015-08-18 10:34:53 +10:00
|
|
|
}
|
|
|
|
struct workspace_output *wso = calloc(1, sizeof(struct workspace_output));
|
|
|
|
wso->workspace = strdup(argv[0]);
|
|
|
|
wso->output = strdup(argv[2]);
|
2015-11-19 23:05:59 +11:00
|
|
|
int i = -1;
|
|
|
|
if ((i = list_seq_find(config->workspace_outputs, workspace_output_cmp_workspace, wso)) != -1) {
|
|
|
|
struct workspace_output *old = config->workspace_outputs->items[i];
|
|
|
|
free(old); // workspaces can only be assigned to a single output
|
|
|
|
list_del(config->workspace_outputs, i);
|
|
|
|
}
|
|
|
|
sway_log(L_DEBUG, "Assigning workspace %s to output %s", argv[0], argv[2]);
|
2015-08-18 10:34:53 +10:00
|
|
|
list_add(config->workspace_outputs, wso);
|
2015-09-14 09:46:16 +10:00
|
|
|
if (!config->reading) {
|
|
|
|
// TODO: Move workspace to output. (dont do so when reloading)
|
|
|
|
}
|
2015-08-18 10:34:53 +10:00
|
|
|
}
|
2015-08-15 05:42:19 +10:00
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-11 06:31:23 +10:00
|
|
|
}
|
|
|
|
|
2016-03-19 10:50:26 +11:00
|
|
|
static struct cmd_results *cmd_workspace_layout(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "workspace_layout", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp(argv[0], "default") == 0) {
|
|
|
|
config->default_layout = L_NONE;
|
|
|
|
} else if (strcasecmp(argv[0], "stacking") == 0) {
|
|
|
|
config->default_layout = L_STACKED;
|
|
|
|
} else if (strcasecmp(argv[0], "tabbed") == 0) {
|
|
|
|
config->default_layout = L_TABBED;
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_INVALID, "workspace_layout", "Expected 'workspace_layout <default|stacking|tabbed>'");
|
|
|
|
}
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
static struct cmd_results *cmd_ws_auto_back_and_forth(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "workspace_auto_back_and_forth", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
2015-08-31 12:34:10 +10:00
|
|
|
}
|
|
|
|
if (strcasecmp(argv[0], "yes") == 0) {
|
|
|
|
config->auto_back_and_forth = true;
|
2015-09-11 04:07:40 +10:00
|
|
|
} else if (strcasecmp(argv[0], "no") == 0) {
|
|
|
|
config->auto_back_and_forth = false;
|
|
|
|
} else {
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_INVALID, "workspace_auto_back_and_forth", "Expected 'workspace_auto_back_and_forth <yes|no>'");
|
2015-08-31 12:34:10 +10:00
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
2015-08-31 12:34:10 +10:00
|
|
|
}
|
|
|
|
|
2015-08-06 07:30:40 +10:00
|
|
|
/* Keep alphabetized */
|
2015-09-14 09:46:16 +10:00
|
|
|
static struct cmd_handler handlers[] = {
|
2016-01-15 16:03:34 +11:00
|
|
|
{ "assign", cmd_assign },
|
2015-12-14 12:39:24 +11:00
|
|
|
{ "bar", cmd_bar },
|
2016-01-10 03:40:19 +11:00
|
|
|
{ "bindcode", cmd_bindcode },
|
2015-09-11 04:07:40 +10:00
|
|
|
{ "bindsym", cmd_bindsym },
|
2016-03-29 23:40:25 +11:00
|
|
|
{ "border", cmd_border },
|
2015-10-26 23:41:45 +11:00
|
|
|
{ "debuglog", cmd_debuglog },
|
2015-09-11 04:07:40 +10:00
|
|
|
{ "default_orientation", cmd_orientation },
|
|
|
|
{ "exec", cmd_exec },
|
|
|
|
{ "exec_always", cmd_exec_always },
|
|
|
|
{ "exit", cmd_exit },
|
|
|
|
{ "floating", cmd_floating },
|
|
|
|
{ "floating_modifier", cmd_floating_mod },
|
|
|
|
{ "focus", cmd_focus },
|
|
|
|
{ "focus_follows_mouse", cmd_focus_follows_mouse },
|
2016-01-27 16:57:55 +11:00
|
|
|
{ "font", cmd_font },
|
2015-11-18 05:27:01 +11:00
|
|
|
{ "for_window", cmd_for_window },
|
2015-09-11 04:07:40 +10:00
|
|
|
{ "fullscreen", cmd_fullscreen },
|
|
|
|
{ "gaps", cmd_gaps },
|
2016-03-29 22:49:28 +11:00
|
|
|
{ "hide_edge_borders", cmd_hide_edge_borders },
|
2016-03-26 22:31:53 +11:00
|
|
|
{ "include", cmd_include },
|
2016-01-17 21:53:37 +11:00
|
|
|
{ "input", cmd_input },
|
2015-09-11 04:07:40 +10:00
|
|
|
{ "kill", cmd_kill },
|
|
|
|
{ "layout", cmd_layout },
|
|
|
|
{ "log_colors", cmd_log_colors },
|
|
|
|
{ "mode", cmd_mode },
|
2015-10-26 22:20:32 +11:00
|
|
|
{ "mouse_warping", cmd_mouse_warping },
|
2015-09-11 04:07:40 +10:00
|
|
|
{ "move", cmd_move },
|
|
|
|
{ "output", cmd_output },
|
|
|
|
{ "reload", cmd_reload },
|
|
|
|
{ "resize", cmd_resize },
|
|
|
|
{ "scratchpad", cmd_scratchpad },
|
2015-10-22 10:34:32 +11:00
|
|
|
{ "seamless_mouse", cmd_seamless_mouse },
|
2015-09-11 04:07:40 +10:00
|
|
|
{ "set", cmd_set },
|
2016-03-20 22:29:47 +11:00
|
|
|
{ "smart_gaps", cmd_smart_gaps },
|
2015-09-11 04:07:40 +10:00
|
|
|
{ "split", cmd_split },
|
|
|
|
{ "splith", cmd_splith },
|
2015-12-30 18:34:58 +11:00
|
|
|
{ "splitt", cmd_splitt },
|
2015-09-11 04:07:40 +10:00
|
|
|
{ "splitv", cmd_splitv },
|
2015-11-27 09:53:20 +11:00
|
|
|
{ "sticky", cmd_sticky },
|
2015-09-11 04:07:40 +10:00
|
|
|
{ "workspace", cmd_workspace },
|
|
|
|
{ "workspace_auto_back_and_forth", cmd_ws_auto_back_and_forth },
|
2016-03-19 10:50:26 +11:00
|
|
|
{ "workspace_layout", cmd_workspace_layout },
|
2015-08-06 07:30:40 +10:00
|
|
|
};
|
|
|
|
|
2015-12-16 09:38:17 +11:00
|
|
|
static struct cmd_results *bar_cmd_binding_mode_indicator(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "binding_mode_indicator", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config->current_bar) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "binding_mode_indicator", "No bar defined.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp("yes", argv[0]) == 0) {
|
|
|
|
config->current_bar->binding_mode_indicator = true;
|
|
|
|
sway_log(L_DEBUG, "Enabling binding mode indicator on bar: %s", config->current_bar->id);
|
|
|
|
} else if (strcasecmp("no", argv[0]) == 0) {
|
|
|
|
config->current_bar->binding_mode_indicator = false;
|
|
|
|
sway_log(L_DEBUG, "Disabling binding mode indicator on bar: %s", config->current_bar->id);
|
|
|
|
} else {
|
|
|
|
error = cmd_results_new(CMD_INVALID, "binding_mode_indicator", "Invalid value %s", argv[0]);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-15 09:43:52 +11:00
|
|
|
static struct cmd_results *bar_cmd_bindsym(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "bindsym", EXPECTED_MORE_THAN, 1))) {
|
|
|
|
return error;
|
|
|
|
} else if (!config->reading) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "bindsym", "Can only be used in config file.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config->current_bar) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "bindsym", "No bar defined.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strlen(argv[1]) != 7) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "bindsym", "Invalid mouse binding %s", argv[1]);
|
|
|
|
}
|
|
|
|
uint32_t numbutton = (uint32_t)atoi(argv[1] + 6);
|
|
|
|
if (numbutton < 1 || numbutton > 5 || strncmp(argv[1], "button", 6) != 0) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "bindsym", "Invalid mouse binding %s", argv[1]);
|
|
|
|
}
|
|
|
|
struct sway_mouse_binding *binding = malloc(sizeof(struct sway_mouse_binding));
|
|
|
|
binding->button = numbutton;
|
|
|
|
binding->command = join_args(argv + 1, argc - 1);
|
|
|
|
|
|
|
|
struct bar_config *bar = config->current_bar;
|
|
|
|
int i = list_seq_find(bar->bindings, sway_mouse_binding_cmp_buttons, binding);
|
|
|
|
if (i > -1) {
|
|
|
|
sway_log(L_DEBUG, "bindsym - '%s' for swaybar already exists, overwriting", argv[0]);
|
|
|
|
struct sway_mouse_binding *dup = bar->bindings->items[i];
|
|
|
|
free_sway_mouse_binding(dup);
|
|
|
|
list_del(bar->bindings, i);
|
|
|
|
}
|
|
|
|
list_add(bar->bindings, binding);
|
replace non-standard qsort_r with qsort
I've tried to make as few changes, as possible.
Usually the reason for using qsort_r is, that you can pass an extra userdata pointer to the
compare function. However, in sway list_sort wrapped qsort_r and always called a wrapper
function for comparing, the wrapper function then had the real compare function as argument.
The only thing, that the wrapper function does, is dereferencing the 'left' and 'right' function
arguments before passing them to the real compare function.
I have renamed list_sort to list_qsort to avoid confusion (so nobody tries to use list_qsort like
list_sort) and removed the wrapper functionality. Now the dereferencing must be done in the
compare function, that gets passed.
Some compare functions were used in both list_sort and list_seq_find. To make the difference
clear, I've added a '_qsort' suffix to the compare functions, that are intended to be used with
the new list_qsort. (In other words: list_qsort is not compatible anymore with list_seq_find).
- Changed and renamed function (it isn't used anywhere but in commands.c, and only for sorting):
compare_set -> compare_set_qsort
- New wrapper functions:
sway_binding_cmp_qsort (for sway_binding_cmp)
sway_mouse_binding_cmp_qsort (for sway_mouse_binding_cmp)
2015-12-22 10:38:18 +11:00
|
|
|
list_qsort(bar->bindings, sway_mouse_binding_cmp_qsort);
|
2015-12-15 09:43:52 +11:00
|
|
|
|
|
|
|
sway_log(L_DEBUG, "bindsym - Bound %s to command %s when clicking swaybar", argv[0], binding->command);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-15 23:12:08 +11:00
|
|
|
static struct cmd_results *bar_cmd_colors(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "colors", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp("{", argv[0]) != 0) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "colors",
|
|
|
|
"Expected '{' at the start of colors config definition.");
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_BLOCK_BAR_COLORS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-16 09:24:37 +11:00
|
|
|
static struct cmd_results *bar_cmd_font(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "font", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config->current_bar) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "font", "No bar defined.");
|
|
|
|
}
|
|
|
|
|
|
|
|
char *font = join_args(argv, argc);
|
2016-03-31 01:38:04 +11:00
|
|
|
free(config->current_bar->font);
|
2015-12-16 09:24:37 +11:00
|
|
|
if (strlen(font) > 6 && strncmp("pango:", font, 6) == 0) {
|
|
|
|
config->current_bar->font = font;
|
|
|
|
} else {
|
2016-03-31 01:38:04 +11:00
|
|
|
config->current_bar->font = font;
|
2015-12-16 09:24:37 +11:00
|
|
|
}
|
|
|
|
|
2016-03-31 01:38:04 +11:00
|
|
|
sway_log(L_DEBUG, "Settings font '%s' for bar: %s", config->current_bar->font, config->current_bar->id);
|
2015-12-16 09:24:37 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-16 00:05:42 +11:00
|
|
|
static struct cmd_results *bar_cmd_height(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "height", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
int height = atoi(argv[0]);
|
|
|
|
if (height < 0) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "height",
|
|
|
|
"Invalid height value: %s", argv[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
config->current_bar->height = height;
|
|
|
|
sway_log(L_DEBUG, "Setting bar height to %d on bar: %s", height, config->current_bar->id);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-22 00:33:27 +11:00
|
|
|
static struct cmd_results *bar_set_hidden_state(struct bar_config *bar, const char *hidden_state) {
|
|
|
|
char *old_state = bar->hidden_state;
|
|
|
|
if (strcasecmp("toggle", hidden_state) == 0 && !config->reading) {
|
|
|
|
if (strcasecmp("hide", bar->hidden_state) == 0) {
|
|
|
|
bar->hidden_state = strdup("show");
|
|
|
|
} else if (strcasecmp("show", bar->hidden_state) == 0) {
|
|
|
|
bar->hidden_state = strdup("hide");
|
|
|
|
}
|
|
|
|
} else if (strcasecmp("hide", hidden_state) == 0) {
|
|
|
|
bar->hidden_state = strdup("hide");
|
|
|
|
} else if (strcasecmp("show", hidden_state) == 0) {
|
|
|
|
bar->hidden_state = strdup("show");
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_INVALID, "hidden_state", "Invalid value %s", hidden_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(old_state, bar->hidden_state) != 0) {
|
|
|
|
if (!config->reading) {
|
2015-12-22 01:31:09 +11:00
|
|
|
ipc_event_barconfig_update(bar);
|
2015-12-22 00:33:27 +11:00
|
|
|
}
|
|
|
|
sway_log(L_DEBUG, "Setting hidden_state: '%s' for bar: %s", bar->hidden_state, bar->id);
|
|
|
|
}
|
|
|
|
|
|
|
|
// free old mode
|
|
|
|
free(old_state);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-15 05:52:25 +11:00
|
|
|
static struct cmd_results *bar_cmd_hidden_state(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
2015-12-22 00:33:27 +11:00
|
|
|
if ((error = checkarg(argc, "hidden_state", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
if ((error = checkarg(argc, "hidden_state", EXPECTED_LESS_THAN, 3))) {
|
2015-12-15 05:52:25 +11:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2015-12-22 00:33:27 +11:00
|
|
|
if (config->reading && argc > 1) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "hidden_state", "Unexpected value %s in config mode", argv[1]);
|
|
|
|
}
|
|
|
|
|
2015-12-15 05:52:25 +11:00
|
|
|
const char *state = argv[0];
|
|
|
|
|
2015-12-22 00:33:27 +11:00
|
|
|
if (config->reading) {
|
|
|
|
return bar_set_hidden_state(config->current_bar, state);
|
|
|
|
}
|
|
|
|
|
2015-12-23 00:14:50 +11:00
|
|
|
const char *id = NULL;
|
2015-12-22 00:33:27 +11:00
|
|
|
if (argc == 2) {
|
|
|
|
id = argv[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
int i;
|
|
|
|
struct bar_config *bar;
|
|
|
|
for (i = 0; i < config->bars->length; ++i) {
|
|
|
|
bar = config->bars->items[i];
|
|
|
|
if (id && strcmp(id, bar->id) == 0) {
|
|
|
|
return bar_set_hidden_state(bar, state);
|
|
|
|
}
|
|
|
|
|
|
|
|
error = bar_set_hidden_state(bar, state);
|
|
|
|
if (error) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-06 09:18:59 +11:00
|
|
|
// active bar modifiers might have changed.
|
|
|
|
update_active_bar_modifiers();
|
|
|
|
|
2015-12-22 00:33:27 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *bar_set_mode(struct bar_config *bar, const char *mode) {
|
|
|
|
char *old_mode = bar->mode;
|
|
|
|
if (strcasecmp("toggle", mode) == 0 && !config->reading) {
|
|
|
|
if (strcasecmp("dock", bar->mode) == 0) {
|
|
|
|
bar->mode = strdup("hide");
|
|
|
|
} else if (strcasecmp("hide", bar->mode) == 0) {
|
|
|
|
bar->mode = strdup("dock");
|
|
|
|
}
|
|
|
|
} else if (strcasecmp("dock", mode) == 0) {
|
|
|
|
bar->mode = strdup("dock");
|
|
|
|
} else if (strcasecmp("hide", mode) == 0) {
|
|
|
|
bar->mode = strdup("hide");
|
|
|
|
} else if (strcasecmp("invisible", mode) == 0) {
|
|
|
|
bar->mode = strdup("invisible");
|
2015-12-15 05:52:25 +11:00
|
|
|
} else {
|
2015-12-22 00:33:27 +11:00
|
|
|
return cmd_results_new(CMD_INVALID, "mode", "Invalid value %s", mode);
|
2015-12-15 05:52:25 +11:00
|
|
|
}
|
|
|
|
|
2015-12-22 00:33:27 +11:00
|
|
|
if (strcmp(old_mode, bar->mode) != 0) {
|
|
|
|
if (!config->reading) {
|
2015-12-22 01:31:09 +11:00
|
|
|
ipc_event_barconfig_update(bar);
|
2016-01-06 09:18:59 +11:00
|
|
|
|
|
|
|
// active bar modifiers might have changed.
|
|
|
|
update_active_bar_modifiers();
|
2015-12-22 00:33:27 +11:00
|
|
|
}
|
|
|
|
sway_log(L_DEBUG, "Setting mode: '%s' for bar: %s", bar->mode, bar->id);
|
|
|
|
}
|
2015-12-15 05:52:25 +11:00
|
|
|
|
2015-12-22 00:33:27 +11:00
|
|
|
// free old mode
|
|
|
|
free(old_mode);
|
2015-12-15 05:52:25 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-15 06:15:58 +11:00
|
|
|
static struct cmd_results *bar_cmd_mode(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
2015-12-22 00:33:27 +11:00
|
|
|
if ((error = checkarg(argc, "mode", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
if ((error = checkarg(argc, "mode", EXPECTED_LESS_THAN, 3))) {
|
2015-12-15 06:15:58 +11:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2015-12-22 00:33:27 +11:00
|
|
|
if (config->reading && argc > 1) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "mode", "Unexpected value %s in config mode", argv[1]);
|
|
|
|
}
|
|
|
|
|
2015-12-15 06:15:58 +11:00
|
|
|
const char *mode = argv[0];
|
2015-12-22 00:33:27 +11:00
|
|
|
|
|
|
|
if (config->reading) {
|
|
|
|
return bar_set_mode(config->current_bar, mode);
|
2015-12-15 06:15:58 +11:00
|
|
|
}
|
|
|
|
|
2015-12-23 00:21:13 +11:00
|
|
|
const char *id = NULL;
|
2015-12-22 00:33:27 +11:00
|
|
|
if (argc == 2) {
|
|
|
|
id = argv[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
int i;
|
|
|
|
struct bar_config *bar;
|
|
|
|
for (i = 0; i < config->bars->length; ++i) {
|
|
|
|
bar = config->bars->items[i];
|
|
|
|
if (id && strcmp(id, bar->id) == 0) {
|
|
|
|
return bar_set_mode(bar, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
error = bar_set_mode(bar, mode);
|
|
|
|
if (error) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
}
|
2015-12-15 06:15:58 +11:00
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-15 04:29:26 +11:00
|
|
|
static struct cmd_results *bar_cmd_id(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "id", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *name = argv[0];
|
|
|
|
const char *oldname = config->current_bar->id;
|
|
|
|
|
|
|
|
// check if id is used by a previously defined bar
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < config->bars->length; ++i) {
|
|
|
|
struct bar_config *find = config->bars->items[i];
|
|
|
|
if (strcmp(name, find->id) == 0 && config->current_bar != find) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "id",
|
|
|
|
"Id '%s' already defined for another bar. Id unchanged (%s).",
|
|
|
|
name, oldname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sway_log(L_DEBUG, "Renaming bar: '%s' to '%s'", oldname, name);
|
|
|
|
|
|
|
|
// free old bar id
|
|
|
|
free(config->current_bar->id);
|
|
|
|
|
|
|
|
config->current_bar->id = strdup(name);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-15 11:01:01 +11:00
|
|
|
static struct cmd_results *bar_cmd_modifier(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "modifier", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config->current_bar) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "modifier", "No bar defined.");
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t mod = 0;
|
|
|
|
|
|
|
|
list_t *split = split_string(argv[0], "+");
|
|
|
|
for (int i = 0; i < split->length; ++i) {
|
2016-01-06 04:07:43 +11:00
|
|
|
uint32_t tmp_mod;
|
|
|
|
if ((tmp_mod = get_modifier_mask_by_name(split->items[i])) > 0) {
|
|
|
|
mod |= tmp_mod;
|
|
|
|
continue;
|
|
|
|
} else {
|
2015-12-15 11:01:01 +11:00
|
|
|
free_flat_list(split);
|
|
|
|
return cmd_results_new(CMD_INVALID, "modifier", "Unknown modifier '%s'", split->items[i]);
|
|
|
|
}
|
|
|
|
}
|
2015-12-15 20:29:37 +11:00
|
|
|
free_flat_list(split);
|
2015-12-15 11:01:01 +11:00
|
|
|
|
|
|
|
config->current_bar->modifier = mod;
|
|
|
|
sway_log(L_DEBUG, "Show/Hide the bar when pressing '%s' in hide mode.", argv[0]);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-16 07:55:20 +11:00
|
|
|
static struct cmd_results *bar_cmd_output(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "output", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config->current_bar) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "output", "No bar defined.");
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *output = argv[0];
|
|
|
|
list_t *outputs = config->current_bar->outputs;
|
2015-12-17 11:29:47 +11:00
|
|
|
if (!outputs) {
|
|
|
|
outputs = create_list();
|
|
|
|
config->current_bar->outputs = outputs;
|
|
|
|
}
|
2015-12-16 07:55:20 +11:00
|
|
|
|
|
|
|
int i;
|
|
|
|
int add_output = 1;
|
|
|
|
if (strcmp("*", output) == 0) {
|
|
|
|
// remove all previous defined outputs and replace with '*'
|
|
|
|
for (i = 0; i < outputs->length; ++i) {
|
|
|
|
free(outputs->items[i]);
|
|
|
|
list_del(outputs, i);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// only add output if not already defined with either the same
|
|
|
|
// name or as '*'
|
|
|
|
for (i = 0; i < outputs->length; ++i) {
|
|
|
|
const char *find = outputs->items[i];
|
|
|
|
if (strcmp("*", find) == 0 || strcmp(output, find) == 0) {
|
|
|
|
add_output = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (add_output) {
|
|
|
|
list_add(outputs, strdup(output));
|
|
|
|
sway_log(L_DEBUG, "Adding bar: '%s' to output '%s'", config->current_bar->id, output);
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-15 01:12:05 +11:00
|
|
|
static struct cmd_results *bar_cmd_position(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "position", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config->current_bar) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "position", "No bar defined.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp("top", argv[0]) == 0) {
|
|
|
|
config->current_bar->position = DESKTOP_SHELL_PANEL_POSITION_TOP;
|
|
|
|
} else if (strcasecmp("bottom", argv[0]) == 0) {
|
|
|
|
config->current_bar->position = DESKTOP_SHELL_PANEL_POSITION_BOTTOM;
|
|
|
|
} else if (strcasecmp("left", argv[0]) == 0) {
|
|
|
|
config->current_bar->position = DESKTOP_SHELL_PANEL_POSITION_LEFT;
|
|
|
|
} else if (strcasecmp("right", argv[0]) == 0) {
|
|
|
|
config->current_bar->position = DESKTOP_SHELL_PANEL_POSITION_RIGHT;
|
|
|
|
} else {
|
|
|
|
error = cmd_results_new(CMD_INVALID, "position", "Invalid value %s", argv[0]);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2015-12-15 02:26:59 +11:00
|
|
|
sway_log(L_DEBUG, "Setting bar position '%s' for bar: %s", argv[0], config->current_bar->id);
|
2015-12-15 01:12:05 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-16 22:58:45 +11:00
|
|
|
static struct cmd_results *bar_cmd_separator_symbol(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "separator_symbol", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config->current_bar) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "separator_symbol", "No bar defined.");
|
|
|
|
}
|
|
|
|
|
|
|
|
free(config->current_bar->separator_symbol);
|
|
|
|
config->current_bar->separator_symbol = strdup(argv[0]);
|
|
|
|
sway_log(L_DEBUG, "Settings separator_symbol '%s' for bar: %s", config->current_bar->separator_symbol, config->current_bar->id);
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-15 10:38:26 +11:00
|
|
|
static struct cmd_results *bar_cmd_status_command(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "status_command", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config->current_bar) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "status_command", "No bar defined.");
|
|
|
|
}
|
2015-12-15 20:29:37 +11:00
|
|
|
|
2015-12-15 10:38:26 +11:00
|
|
|
free(config->current_bar->status_command);
|
|
|
|
config->current_bar->status_command = join_args(argv, argc);
|
|
|
|
sway_log(L_DEBUG, "Feeding bar with status command: %s", config->current_bar->status_command);
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-15 00:56:28 +11:00
|
|
|
static struct cmd_results *bar_cmd_strip_workspace_numbers(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "strip_workspace_numbers", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config->current_bar) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "strip_workspace_numbers", "No bar defined.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp("yes", argv[0]) == 0) {
|
|
|
|
config->current_bar->strip_workspace_numbers = true;
|
2015-12-15 02:26:59 +11:00
|
|
|
sway_log(L_DEBUG, "Stripping workspace numbers on bar: %s", config->current_bar->id);
|
2015-12-15 00:56:28 +11:00
|
|
|
} else if (strcasecmp("no", argv[0]) == 0) {
|
|
|
|
config->current_bar->strip_workspace_numbers = false;
|
2015-12-15 02:26:59 +11:00
|
|
|
sway_log(L_DEBUG, "Enabling workspace numbers on bar: %s", config->current_bar->id);
|
2015-12-15 00:56:28 +11:00
|
|
|
} else {
|
|
|
|
error = cmd_results_new(CMD_INVALID, "strip_workspace_numbers", "Invalid value %s", argv[0]);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-19 09:49:50 +11:00
|
|
|
static struct cmd_results *bar_cmd_swaybar_command(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "swaybar_command", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config->current_bar) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "swaybar_command", "No bar defined.");
|
|
|
|
}
|
|
|
|
|
|
|
|
free(config->current_bar->swaybar_command);
|
|
|
|
config->current_bar->swaybar_command = join_args(argv, argc);
|
|
|
|
sway_log(L_DEBUG, "Using custom swaybar command: %s", config->current_bar->swaybar_command);
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-15 00:52:34 +11:00
|
|
|
static struct cmd_results *bar_cmd_tray_output(int argc, char **argv) {
|
|
|
|
sway_log(L_ERROR, "warning: tray_output is not supported on wayland");
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-14 10:00:11 +11:00
|
|
|
static struct cmd_results *bar_cmd_tray_padding(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "tray_padding", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config->current_bar) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "tray_padding", "No bar defined.");
|
|
|
|
}
|
|
|
|
|
|
|
|
int padding = atoi(argv[0]);
|
|
|
|
if (padding < 0) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "tray_padding",
|
|
|
|
"Invalid padding value %s, minimum is 0", argv[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 1 && strcasecmp("px", argv[1]) != 0) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "tray_padding",
|
|
|
|
"Unknown unit %s", argv[1]);
|
|
|
|
}
|
|
|
|
config->current_bar->tray_padding = padding;
|
2015-12-15 02:26:59 +11:00
|
|
|
sway_log(L_DEBUG, "Enabling tray padding of %d px on bar: %s", padding, config->current_bar->id);
|
2015-12-14 10:00:11 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-12-14 09:33:54 +11:00
|
|
|
static struct cmd_results *bar_cmd_workspace_buttons(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "workspace_buttons", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config->current_bar) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "workspace_buttons", "No bar defined.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp("yes", argv[0]) == 0) {
|
|
|
|
config->current_bar->workspace_buttons = true;
|
2015-12-15 02:26:59 +11:00
|
|
|
sway_log(L_DEBUG, "Enabling workspace buttons on bar: %s", config->current_bar->id);
|
2015-12-14 09:33:54 +11:00
|
|
|
} else if (strcasecmp("no", argv[0]) == 0) {
|
|
|
|
config->current_bar->workspace_buttons = false;
|
2015-12-15 02:26:59 +11:00
|
|
|
sway_log(L_DEBUG, "Disabling workspace buttons on bar: %s", config->current_bar->id);
|
2015-12-14 09:33:54 +11:00
|
|
|
} else {
|
|
|
|
error = cmd_results_new(CMD_INVALID, "workspace_buttons", "Invalid value %s", argv[0]);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-11-30 09:20:27 +11:00
|
|
|
static struct cmd_handler bar_handlers[] = {
|
2015-12-16 09:38:17 +11:00
|
|
|
{ "binding_mode_indicator", bar_cmd_binding_mode_indicator },
|
2015-12-15 09:43:52 +11:00
|
|
|
{ "bindsym", bar_cmd_bindsym },
|
2015-12-15 23:12:08 +11:00
|
|
|
{ "colors", bar_cmd_colors },
|
2015-12-16 09:24:37 +11:00
|
|
|
{ "font", bar_cmd_font },
|
2015-12-16 00:05:42 +11:00
|
|
|
{ "height", bar_cmd_height },
|
2015-12-15 05:52:25 +11:00
|
|
|
{ "hidden_state", bar_cmd_hidden_state },
|
2015-12-15 04:29:26 +11:00
|
|
|
{ "id", bar_cmd_id },
|
2015-12-15 06:15:58 +11:00
|
|
|
{ "mode", bar_cmd_mode },
|
2015-12-15 11:01:01 +11:00
|
|
|
{ "modifier", bar_cmd_modifier },
|
2015-12-16 07:55:20 +11:00
|
|
|
{ "output", bar_cmd_output },
|
2015-12-15 01:12:05 +11:00
|
|
|
{ "position", bar_cmd_position },
|
2015-12-16 22:58:45 +11:00
|
|
|
{ "separator_symbol", bar_cmd_separator_symbol },
|
2015-12-15 10:38:26 +11:00
|
|
|
{ "status_command", bar_cmd_status_command },
|
2015-12-15 00:56:28 +11:00
|
|
|
{ "strip_workspace_numbers", bar_cmd_strip_workspace_numbers },
|
2015-12-19 09:49:50 +11:00
|
|
|
{ "swaybar_command", bar_cmd_swaybar_command },
|
2015-12-15 00:52:34 +11:00
|
|
|
{ "tray_output", bar_cmd_tray_output },
|
2015-12-14 10:00:11 +11:00
|
|
|
{ "tray_padding", bar_cmd_tray_padding },
|
2015-12-14 09:33:54 +11:00
|
|
|
{ "workspace_buttons", bar_cmd_workspace_buttons },
|
2015-11-30 09:20:27 +11:00
|
|
|
};
|
|
|
|
|
2015-12-15 23:12:08 +11:00
|
|
|
/**
|
|
|
|
* Check and add color to buffer.
|
|
|
|
*
|
|
|
|
* return error object, or NULL if color is valid.
|
|
|
|
*/
|
|
|
|
static struct cmd_results *add_color(const char *name, char *buffer, const char *color) {
|
2015-12-15 23:45:04 +11:00
|
|
|
int len = strlen(color);
|
|
|
|
if (len != 7 && len != 9 ) {
|
2015-12-15 23:12:08 +11:00
|
|
|
return cmd_results_new(CMD_INVALID, name, "Invalid color definition %s", color);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (color[0] != '#') {
|
|
|
|
return cmd_results_new(CMD_INVALID, name, "Invalid color definition %s", color);
|
|
|
|
}
|
|
|
|
|
|
|
|
int i;
|
2015-12-15 23:45:04 +11:00
|
|
|
for (i = 1; i < len; ++i) {
|
2015-12-15 23:12:08 +11:00
|
|
|
if (!isxdigit(color[i])) {
|
|
|
|
return cmd_results_new(CMD_INVALID, name, "Invalid color definition %s", color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// copy color to buffer
|
2015-12-15 23:45:04 +11:00
|
|
|
strncpy(buffer, color, len);
|
|
|
|
// add default alpha channel if color was defined without it
|
|
|
|
if (len == 7) {
|
|
|
|
buffer[7] = 'f';
|
|
|
|
buffer[8] = 'f';
|
|
|
|
}
|
|
|
|
sway_log(L_DEBUG, "Setting %s color %s for bar: %s", name, buffer, config->current_bar->id);
|
2015-12-15 23:12:08 +11:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *bar_colors_cmd_active_workspace(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "active_workspace", EXPECTED_EQUAL_TO, 3))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("active_workspace_border", config->current_bar->colors.active_workspace_border, argv[0]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("active_workspace_bg", config->current_bar->colors.active_workspace_bg, argv[1]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("active_workspace_text", config->current_bar->colors.active_workspace_text, argv[2]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *bar_colors_cmd_background(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "background", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("background", config->current_bar->colors.background, argv[0]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *bar_colors_cmd_binding_mode(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "binding_mode", EXPECTED_EQUAL_TO, 3))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("binding_mode_border", config->current_bar->colors.binding_mode_border, argv[0]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("binding_mode_bg", config->current_bar->colors.binding_mode_bg, argv[1]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("binding_mode_text", config->current_bar->colors.binding_mode_text, argv[2]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *bar_colors_cmd_focused_workspace(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "focused_workspace", EXPECTED_EQUAL_TO, 3))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("focused_workspace_border", config->current_bar->colors.focused_workspace_border, argv[0]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("focused_workspace_bg", config->current_bar->colors.focused_workspace_bg, argv[1]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("focused_workspace_text", config->current_bar->colors.focused_workspace_text, argv[2]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *bar_colors_cmd_inactive_workspace(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "inactive_workspace", EXPECTED_EQUAL_TO, 3))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("inactive_workspace_border", config->current_bar->colors.inactive_workspace_border, argv[0]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("inactive_workspace_bg", config->current_bar->colors.inactive_workspace_bg, argv[1]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("inactive_workspace_text", config->current_bar->colors.inactive_workspace_text, argv[2]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *bar_colors_cmd_separator(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "separator", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("separator", config->current_bar->colors.separator, argv[0]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *bar_colors_cmd_statusline(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "statusline", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("statusline", config->current_bar->colors.statusline, argv[0]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cmd_results *bar_colors_cmd_urgent_workspace(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "urgent_workspace", EXPECTED_EQUAL_TO, 3))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("urgent_workspace_border", config->current_bar->colors.urgent_workspace_border, argv[0]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("urgent_workspace_bg", config->current_bar->colors.urgent_workspace_bg, argv[1]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = add_color("urgent_workspace_text", config->current_bar->colors.urgent_workspace_text, argv[2]))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2016-01-17 21:53:37 +11:00
|
|
|
static struct cmd_handler input_handlers[] = {
|
|
|
|
{ "click_method", input_cmd_click_method },
|
|
|
|
{ "drag_lock", input_cmd_drag_lock },
|
|
|
|
{ "dwt", input_cmd_dwt },
|
|
|
|
{ "events", input_cmd_events },
|
|
|
|
{ "middle_emulation", input_cmd_middle_emulation },
|
|
|
|
{ "natural_scroll", input_cmd_natural_scroll },
|
|
|
|
{ "pointer_accel", input_cmd_pointer_accel },
|
|
|
|
{ "scroll_method", input_cmd_scroll_method },
|
|
|
|
{ "tap", input_cmd_tap },
|
|
|
|
};
|
|
|
|
|
2015-12-15 23:12:08 +11:00
|
|
|
static struct cmd_handler bar_colors_handlers[] = {
|
|
|
|
{ "active_workspace", bar_colors_cmd_active_workspace },
|
|
|
|
{ "background", bar_colors_cmd_background },
|
|
|
|
{ "binding_mode", bar_colors_cmd_binding_mode },
|
|
|
|
{ "focused_workspace", bar_colors_cmd_focused_workspace },
|
|
|
|
{ "inactive_workspace", bar_colors_cmd_inactive_workspace },
|
|
|
|
{ "separator", bar_colors_cmd_separator },
|
|
|
|
{ "statusline", bar_colors_cmd_statusline },
|
|
|
|
{ "urgent_workspace", bar_colors_cmd_urgent_workspace },
|
|
|
|
};
|
|
|
|
|
2015-08-13 14:51:38 +10:00
|
|
|
static int handler_compare(const void *_a, const void *_b) {
|
2015-08-06 07:30:40 +10:00
|
|
|
const struct cmd_handler *a = _a;
|
|
|
|
const struct cmd_handler *b = _b;
|
|
|
|
return strcasecmp(a->command, b->command);
|
|
|
|
}
|
|
|
|
|
2015-11-30 09:20:27 +11:00
|
|
|
static struct cmd_handler *find_handler(char *line, enum cmd_status block) {
|
2015-08-06 07:30:40 +10:00
|
|
|
struct cmd_handler d = { .command=line };
|
2015-12-14 12:39:24 +11:00
|
|
|
struct cmd_handler *res = NULL;
|
2016-01-17 21:53:37 +11:00
|
|
|
sway_log(L_DEBUG, "find_handler(%s) %d", line, block == CMD_BLOCK_INPUT);
|
2015-12-14 12:39:24 +11:00
|
|
|
if (block == CMD_BLOCK_BAR) {
|
|
|
|
res = bsearch(&d, bar_handlers,
|
|
|
|
sizeof(bar_handlers) / sizeof(struct cmd_handler),
|
|
|
|
sizeof(struct cmd_handler), handler_compare);
|
2015-12-15 23:12:08 +11:00
|
|
|
} else if (block == CMD_BLOCK_BAR_COLORS){
|
|
|
|
res = bsearch(&d, bar_colors_handlers,
|
|
|
|
sizeof(bar_colors_handlers) / sizeof(struct cmd_handler),
|
|
|
|
sizeof(struct cmd_handler), handler_compare);
|
2016-01-17 21:53:37 +11:00
|
|
|
} else if (block == CMD_BLOCK_INPUT) {
|
|
|
|
sway_log(L_DEBUG, "lookng at input handlers");
|
|
|
|
res = bsearch(&d, input_handlers,
|
|
|
|
sizeof(input_handlers) / sizeof(struct cmd_handler),
|
|
|
|
sizeof(struct cmd_handler), handler_compare);
|
2015-12-14 12:39:24 +11:00
|
|
|
} else {
|
|
|
|
res = bsearch(&d, handlers,
|
2015-09-05 09:57:03 +10:00
|
|
|
sizeof(handlers) / sizeof(struct cmd_handler),
|
|
|
|
sizeof(struct cmd_handler), handler_compare);
|
2015-12-14 12:39:24 +11:00
|
|
|
}
|
2015-08-06 07:30:40 +10:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2015-10-22 23:14:13 +11:00
|
|
|
struct cmd_results *handle_command(char *_exec) {
|
|
|
|
// Even though this function will process multiple commands we will only
|
|
|
|
// return the last error, if any (for now). (Since we have access to an
|
|
|
|
// error string we could e.g. concatonate all errors there.)
|
|
|
|
struct cmd_results *results = NULL;
|
2015-09-15 12:59:25 +10:00
|
|
|
char *exec = strdup(_exec);
|
|
|
|
char *head = exec;
|
|
|
|
char *cmdlist;
|
|
|
|
char *cmd;
|
|
|
|
char *criteria __attribute__((unused));
|
|
|
|
|
|
|
|
head = exec;
|
|
|
|
do {
|
2015-11-19 05:03:24 +11:00
|
|
|
// Extract criteria (valid for this command list only).
|
|
|
|
criteria = NULL;
|
2015-09-15 12:59:25 +10:00
|
|
|
if (*head == '[') {
|
2015-11-19 05:03:24 +11:00
|
|
|
++head;
|
2015-09-15 12:59:25 +10:00
|
|
|
criteria = argsep(&head, "]");
|
|
|
|
if (head) {
|
|
|
|
++head;
|
|
|
|
// TODO handle criteria
|
|
|
|
} else {
|
2015-11-19 05:03:24 +11:00
|
|
|
if (!results) {
|
|
|
|
results = cmd_results_new(CMD_INVALID, criteria, "Unmatched [");
|
|
|
|
}
|
|
|
|
goto cleanup;
|
2015-09-15 12:59:25 +10:00
|
|
|
}
|
|
|
|
// Skip leading whitespace
|
|
|
|
head += strspn(head, whitespace);
|
2015-11-19 05:03:24 +11:00
|
|
|
|
|
|
|
// TODO: it will yield unexpected results to execute commands
|
|
|
|
// (on any view) that where meant for certain views only.
|
|
|
|
if (!results) {
|
|
|
|
int len = strlen(criteria) + strlen(head) + 4;
|
|
|
|
char *tmp = malloc(len);
|
|
|
|
snprintf(tmp, len, "[%s] %s", criteria, head);
|
|
|
|
results = cmd_results_new(CMD_INVALID, tmp,
|
|
|
|
"Can't handle criteria string: Refusing to execute command");
|
|
|
|
free(tmp);
|
|
|
|
}
|
|
|
|
goto cleanup;
|
2015-09-15 12:59:25 +10:00
|
|
|
}
|
|
|
|
// Split command list
|
|
|
|
cmdlist = argsep(&head, ";");
|
|
|
|
cmdlist += strspn(cmdlist, whitespace);
|
|
|
|
do {
|
|
|
|
// Split commands
|
|
|
|
cmd = argsep(&cmdlist, ",");
|
|
|
|
cmd += strspn(cmd, whitespace);
|
2015-10-20 04:42:49 +11:00
|
|
|
if (strcmp(cmd, "") == 0) {
|
|
|
|
sway_log(L_INFO, "Ignoring empty command.");
|
|
|
|
continue;
|
|
|
|
}
|
2015-09-15 12:59:25 +10:00
|
|
|
sway_log(L_INFO, "Handling command '%s'", cmd);
|
|
|
|
//TODO better handling of argv
|
|
|
|
int argc;
|
|
|
|
char **argv = split_args(cmd, &argc);
|
2016-03-18 19:34:45 +11:00
|
|
|
if (strcmp(argv[0], "exec") != 0) {
|
|
|
|
int i;
|
|
|
|
for (i = 1; i < argc; ++i) {
|
|
|
|
if (*argv[i] == '\"' || *argv[i] == '\'') {
|
|
|
|
strip_quotes(argv[i]);
|
|
|
|
}
|
2016-01-11 13:39:34 +11:00
|
|
|
}
|
2015-09-15 12:59:25 +10:00
|
|
|
}
|
2015-11-30 09:20:27 +11:00
|
|
|
struct cmd_handler *handler = find_handler(argv[0], CMD_BLOCK_END);
|
2015-10-22 23:14:13 +11:00
|
|
|
if (!handler) {
|
|
|
|
if (results) {
|
|
|
|
free_cmd_results(results);
|
|
|
|
}
|
2015-10-23 22:03:14 +11:00
|
|
|
results = cmd_results_new(CMD_INVALID, cmd, "Unknown/invalid command");
|
2015-10-22 23:14:13 +11:00
|
|
|
free_argv(argc, argv);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
struct cmd_results *res = handler->handle(argc-1, argv+1);
|
|
|
|
if (res->status != CMD_SUCCESS) {
|
2015-09-15 12:59:25 +10:00
|
|
|
free_argv(argc, argv);
|
2015-10-22 23:14:13 +11:00
|
|
|
if (results) {
|
|
|
|
free_cmd_results(results);
|
|
|
|
}
|
|
|
|
results = res;
|
2015-09-15 12:59:25 +10:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
free_argv(argc, argv);
|
2015-10-22 23:14:13 +11:00
|
|
|
free_cmd_results(res);
|
2015-09-15 12:59:25 +10:00
|
|
|
} while(cmdlist);
|
|
|
|
} while(head);
|
|
|
|
cleanup:
|
|
|
|
free(exec);
|
2015-10-22 23:14:13 +11:00
|
|
|
if (!results) {
|
|
|
|
results = cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
return results;
|
2015-08-06 07:30:40 +10:00
|
|
|
}
|
2015-09-09 03:27:09 +10:00
|
|
|
|
2015-11-18 09:30:45 +11:00
|
|
|
// this is like handle_command above, except:
|
|
|
|
// 1) it ignores empty commands (empty lines)
|
|
|
|
// 2) it does variable substitution
|
|
|
|
// 3) it doesn't split commands (because the multiple commands are supposed to
|
|
|
|
// be chained together)
|
|
|
|
// 4) handle_command handles all state internally while config_command has some
|
|
|
|
// state handled outside (notably the block mode, in read_config)
|
2015-11-30 09:20:27 +11:00
|
|
|
struct cmd_results *config_command(char *exec, enum cmd_status block) {
|
2015-10-22 23:14:13 +11:00
|
|
|
struct cmd_results *results = NULL;
|
2015-09-09 03:27:09 +10:00
|
|
|
int argc;
|
|
|
|
char **argv = split_args(exec, &argc);
|
2015-10-22 23:14:13 +11:00
|
|
|
if (!argc) {
|
|
|
|
results = cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2015-09-19 01:33:28 +10:00
|
|
|
|
|
|
|
sway_log(L_INFO, "handling config command '%s'", exec);
|
2015-09-15 12:59:25 +10:00
|
|
|
// Endblock
|
|
|
|
if (**argv == '}') {
|
2015-10-22 23:14:13 +11:00
|
|
|
results = cmd_results_new(CMD_BLOCK_END, NULL, NULL);
|
2015-09-09 03:27:09 +10:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2015-11-30 09:20:27 +11:00
|
|
|
struct cmd_handler *handler = find_handler(argv[0], block);
|
2015-09-15 12:59:25 +10:00
|
|
|
if (!handler) {
|
2015-10-23 22:03:14 +11:00
|
|
|
char *input = argv[0] ? argv[0] : "(empty)";
|
2015-10-22 23:14:13 +11:00
|
|
|
results = cmd_results_new(CMD_INVALID, input, "Unknown/invalid command");
|
2015-09-15 12:59:25 +10:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
int i;
|
|
|
|
// Var replacement, for all but first argument of set
|
|
|
|
for (i = handler->handle == cmd_set ? 2 : 1; i < argc; ++i) {
|
|
|
|
argv[i] = do_var_replacement(argv[i]);
|
2016-01-09 09:16:57 +11:00
|
|
|
unescape_string(argv[i]);
|
2015-09-15 12:59:25 +10:00
|
|
|
}
|
|
|
|
/* Strip quotes for first argument.
|
|
|
|
* TODO This part needs to be handled much better */
|
|
|
|
if (argc>1 && (*argv[1] == '\"' || *argv[1] == '\'')) {
|
|
|
|
strip_quotes(argv[1]);
|
2015-09-09 03:27:09 +10:00
|
|
|
}
|
2015-12-15 03:11:29 +11:00
|
|
|
if (handler->handle) {
|
|
|
|
results = handler->handle(argc-1, argv+1);
|
|
|
|
} else {
|
|
|
|
results = cmd_results_new(CMD_INVALID, argv[0], "This command is shimmed, but unimplemented");
|
|
|
|
}
|
2015-09-09 03:27:09 +10:00
|
|
|
cleanup:
|
|
|
|
free_argv(argc, argv);
|
2015-10-22 23:14:13 +11:00
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct cmd_results *cmd_results_new(enum cmd_status status, const char* input, const char *format, ...) {
|
|
|
|
struct cmd_results *results = malloc(sizeof(struct cmd_results));
|
|
|
|
results->status = status;
|
2015-10-23 22:03:14 +11:00
|
|
|
if (input) {
|
|
|
|
results->input = strdup(input); // input is the command name
|
|
|
|
} else {
|
|
|
|
results->input = NULL;
|
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
if (format) {
|
|
|
|
char *error = malloc(256);
|
|
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
|
|
|
vsnprintf(error, 256, format, args);
|
|
|
|
va_end(args);
|
|
|
|
results->error = error;
|
|
|
|
} else {
|
|
|
|
results->error = NULL;
|
|
|
|
}
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
|
|
|
void free_cmd_results(struct cmd_results *results) {
|
2015-10-23 22:03:14 +11:00
|
|
|
if (results->input) {
|
|
|
|
free(results->input);
|
|
|
|
}
|
2015-10-23 21:50:30 +11:00
|
|
|
if (results->error) {
|
2015-10-22 23:14:13 +11:00
|
|
|
free(results->error);
|
2015-10-23 21:50:30 +11:00
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
free(results);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *cmd_results_to_json(struct cmd_results *results) {
|
|
|
|
json_object *root = json_object_new_object();
|
|
|
|
json_object_object_add(root, "success", json_object_new_boolean(results->status == CMD_SUCCESS));
|
2015-10-23 21:50:30 +11:00
|
|
|
if (results->input) {
|
2015-10-22 23:14:13 +11:00
|
|
|
json_object_object_add(root, "input", json_object_new_string(results->input));
|
2015-10-23 21:50:30 +11:00
|
|
|
}
|
|
|
|
if (results->error) {
|
2015-10-22 23:14:13 +11:00
|
|
|
json_object_object_add(root, "error", json_object_new_string(results->error));
|
2015-10-23 21:50:30 +11:00
|
|
|
}
|
2015-10-22 23:14:13 +11:00
|
|
|
const char *json = json_object_to_json_string(root);
|
|
|
|
free(root);
|
|
|
|
return json;
|
2015-09-09 03:27:09 +10:00
|
|
|
}
|