aboutsummaryrefslogtreecommitdiff
path: root/sway/tree
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-08-13 22:17:38 +0100
committerGitHub <noreply@github.com>2018-08-13 22:17:38 +0100
commitd0fb2d9a53662c8629f1a0f0a57e83e6f36285c4 (patch)
tree5441e8f44eef05608f59f454981951caccd96f40 /sway/tree
parent146cc0a441f6901eeba7df691098f71d0de73a53 (diff)
parent18e425eda63dfa274b5e4f0e773de56a3d44e569 (diff)
Merge pull request #2454 from minus7/workspace-names
Use assigned workspace name for output
Diffstat (limited to 'sway/tree')
-rw-r--r--sway/tree/workspace.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c
index b8bec044..0177068b 100644
--- a/sway/tree/workspace.c
+++ b/sway/tree/workspace.c
@@ -120,6 +120,8 @@ static void workspace_name_from_binding(const struct sway_binding * binding,
name = argsep(&cmdlist, ",;");
}
+ // TODO: support "move container to workspace" bindings as well
+
if (strcmp("workspace", cmd) == 0 && name) {
char *_target = strdup(name);
_target = do_var_replacement(_target);
@@ -189,8 +191,8 @@ static void workspace_name_from_binding(const struct sway_binding * binding,
char *workspace_next_name(const char *output_name) {
wlr_log(WLR_DEBUG, "Workspace: Generating new workspace name for output %s",
output_name);
- // Scan all workspace bindings to find the next available workspace name,
- // if none are found/available then default to a number
+ // Scan for available workspace names by looking through output-workspace
+ // assignments primarily, falling back to bindings and numbers.
struct sway_mode *mode = config->current_mode;
int order = INT_MAX;
@@ -203,6 +205,15 @@ char *workspace_next_name(const char *output_name) {
workspace_name_from_binding(mode->keycode_bindings->items[i],
output_name, &order, &target);
}
+ for (int i = 0; i < config->workspace_outputs->length; ++i) {
+ // Unlike with bindings, this does not guarantee order
+ const struct workspace_output *wso = config->workspace_outputs->items[i];
+ if (strcmp(wso->output, output_name) == 0
+ && workspace_by_name(wso->workspace) == NULL) {
+ free(target);
+ target = strdup(wso->workspace);
+ }
+ }
if (target != NULL) {
return target;
}