mirror of
https://github.com/swaywm/sway.git
synced 2026-04-28 06:46:26 -04:00
Merge 038798db13 into 0dc1d87490
This commit is contained in:
commit
0a19aa477f
6 changed files with 75 additions and 10 deletions
|
|
@ -229,8 +229,7 @@ static bool cmd_set(struct sway_config *config, int argc, char **argv) {
|
||||||
|
|
||||||
static bool _do_split(struct sway_config *config, int argc, char **argv, int layout) {
|
static bool _do_split(struct sway_config *config, int argc, char **argv, int layout) {
|
||||||
char *name = layout == L_VERT ? "splitv":
|
char *name = layout == L_VERT ? "splitv":
|
||||||
layout == L_HORIZ ? "splith":
|
layout == L_HORIZ ? "splith":"split";
|
||||||
"split";
|
|
||||||
if (!checkarg(argc, name, EXPECTED_EQUAL_TO, 0)) {
|
if (!checkarg(argc, name, EXPECTED_EQUAL_TO, 0)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -33,6 +33,7 @@ bool load_config() {
|
||||||
void config_defaults(struct sway_config *config) {
|
void config_defaults(struct sway_config *config) {
|
||||||
config->symbols = create_list();
|
config->symbols = create_list();
|
||||||
config->modes = create_list();
|
config->modes = create_list();
|
||||||
|
config->cmd_queue = create_list();
|
||||||
config->current_mode = malloc(sizeof(struct sway_mode));
|
config->current_mode = malloc(sizeof(struct sway_mode));
|
||||||
config->current_mode->name = NULL;
|
config->current_mode->name = NULL;
|
||||||
config->current_mode->bindings = create_list();
|
config->current_mode->bindings = create_list();
|
||||||
|
|
@ -68,9 +69,19 @@ struct sway_config *read_config(FILE *file, bool is_active) {
|
||||||
goto _continue;
|
goto _continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!temp_depth && handle_command(config, line) != true) {
|
// Any command which would require wlc to be initialized
|
||||||
|
// should be queued for later execution
|
||||||
|
list_t *args = split_string(line, " ");
|
||||||
|
if (strcmp("workspace", args->items[0]) == 0) {
|
||||||
|
sway_log(L_DEBUG, "Deferring command %s", line);
|
||||||
|
char *cmd = malloc(strlen(line) + 1);
|
||||||
|
strcpy(cmd, line);
|
||||||
|
list_add(config->cmd_queue, cmd);
|
||||||
|
} else if (!temp_depth && !handle_command(config, line)) {
|
||||||
|
sway_log(L_DEBUG, "Config load failed for line %s", line);
|
||||||
success = false;
|
success = false;
|
||||||
}
|
}
|
||||||
|
list_free(args);
|
||||||
|
|
||||||
_continue:
|
_continue:
|
||||||
if (line && line[strlen(line) - 1] == '{') {
|
if (line && line[strlen(line) - 1] == '{') {
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@ struct sway_mode {
|
||||||
struct sway_config {
|
struct sway_config {
|
||||||
list_t *symbols;
|
list_t *symbols;
|
||||||
list_t *modes;
|
list_t *modes;
|
||||||
|
list_t *cmd_queue;
|
||||||
struct sway_mode *current_mode;
|
struct sway_mode *current_mode;
|
||||||
|
|
||||||
// Flags
|
// Flags
|
||||||
|
|
|
||||||
|
|
@ -163,6 +163,15 @@ static bool handle_pointer_button(wlc_handle view, uint32_t time, const struct w
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void handle_wlc_ready(void) {
|
||||||
|
sway_log(L_DEBUG, "Compositor is ready, executing cmds in queue");
|
||||||
|
int i;
|
||||||
|
for (i = 0; i < config->cmd_queue->length; ++i) {
|
||||||
|
handle_command(config, config->cmd_queue->items[i]);
|
||||||
|
}
|
||||||
|
free_flat_list(config->cmd_queue);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
struct wlc_interface interface = {
|
struct wlc_interface interface = {
|
||||||
.output = {
|
.output = {
|
||||||
|
|
@ -185,6 +194,9 @@ struct wlc_interface interface = {
|
||||||
.pointer = {
|
.pointer = {
|
||||||
.motion = handle_pointer_motion,
|
.motion = handle_pointer_motion,
|
||||||
.button = handle_pointer_button
|
.button = handle_pointer_button
|
||||||
|
},
|
||||||
|
.compositor = {
|
||||||
|
.ready = handle_wlc_ready
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,9 @@ int main(int argc, char **argv) {
|
||||||
/* Signal handling */
|
/* Signal handling */
|
||||||
signal(SIGCHLD, sigchld_handle);
|
signal(SIGCHLD, sigchld_handle);
|
||||||
|
|
||||||
|
if (!load_config()) {
|
||||||
|
sway_abort("Unable to load config");
|
||||||
|
}
|
||||||
|
|
||||||
setenv("WLC_DIM", "0", 0);
|
setenv("WLC_DIM", "0", 0);
|
||||||
if (!wlc_init(&interface, argc, argv)) {
|
if (!wlc_init(&interface, argc, argv)) {
|
||||||
|
|
@ -25,10 +28,6 @@ int main(int argc, char **argv) {
|
||||||
}
|
}
|
||||||
setenv("DISPLAY", ":1", 1);
|
setenv("DISPLAY", ":1", 1);
|
||||||
|
|
||||||
if (!load_config()) {
|
|
||||||
sway_abort("Unable to load config");
|
|
||||||
}
|
|
||||||
|
|
||||||
wlc_run();
|
wlc_run();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -6,13 +6,56 @@
|
||||||
#include "list.h"
|
#include "list.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "container.h"
|
#include "container.h"
|
||||||
|
#include "config.h"
|
||||||
|
#include "stringop.h"
|
||||||
|
|
||||||
swayc_t *active_workspace = NULL;
|
swayc_t *active_workspace = NULL;
|
||||||
|
|
||||||
int ws_num = 1;
|
|
||||||
|
|
||||||
char *workspace_next_name(void) {
|
char *workspace_next_name(void) {
|
||||||
|
sway_log(L_DEBUG, "Workspace: Generating new name");
|
||||||
|
int i;
|
||||||
int l = 1;
|
int l = 1;
|
||||||
|
// Scan all workspace bindings to find the next available workspace name,
|
||||||
|
// if none are found/available then default to a number
|
||||||
|
struct sway_mode *mode = config->current_mode;
|
||||||
|
|
||||||
|
for (i = 0; i < mode->bindings->length; ++i) {
|
||||||
|
struct sway_binding *binding = mode->bindings->items[i];
|
||||||
|
const char* command = binding->command;
|
||||||
|
list_t *args = split_string(command, " ");
|
||||||
|
|
||||||
|
if (strcmp("workspace", args->items[0]) == 0 && args->length > 1) {
|
||||||
|
sway_log(L_DEBUG, "Got valid workspace command for target: '%s'", args->items[1]);
|
||||||
|
char* target = malloc(strlen(args->items[1]) + 1);
|
||||||
|
strcpy(target, args->items[1]);
|
||||||
|
while (*target == ' ' || *target == '\t')
|
||||||
|
target++;
|
||||||
|
|
||||||
|
// Make sure that the command references an actual workspace
|
||||||
|
// not a command about workspaces
|
||||||
|
if (strcmp(target, "next") == 0 ||
|
||||||
|
strcmp(target, "prev") == 0 ||
|
||||||
|
strcmp(target, "next_on_output") == 0 ||
|
||||||
|
strcmp(target, "prev_on_output") == 0 ||
|
||||||
|
strcmp(target, "number") == 0 ||
|
||||||
|
strcmp(target, "back_and_forth") == 0 ||
|
||||||
|
strcmp(target, "current") == 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
//Make sure that the workspace doesn't already exist
|
||||||
|
if (workspace_find_by_name(target)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
list_free(args);
|
||||||
|
|
||||||
|
sway_log(L_DEBUG, "Workspace: Found free name %s", target);
|
||||||
|
return target;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// As a fall back, get the current number of active workspaces
|
||||||
|
// and return that + 1 for the next workspace's name
|
||||||
|
int ws_num = root_container.children->length;
|
||||||
if (ws_num >= 10) {
|
if (ws_num >= 10) {
|
||||||
l = 2;
|
l = 2;
|
||||||
} else if (ws_num >= 100) {
|
} else if (ws_num >= 100) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue