aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/config.h')
-rw-r--r--include/sway/config.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index e75b0664..9b583323 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -1,6 +1,5 @@
1#ifndef _SWAY_CONFIG_H 1#ifndef _SWAY_CONFIG_H
2#define _SWAY_CONFIG_H 2#define _SWAY_CONFIG_H
3#define PID_WORKSPACE_TIMEOUT 60
4#include <libinput.h> 3#include <libinput.h>
5#include <stdint.h> 4#include <stdint.h>
6#include <string.h> 5#include <string.h>
@@ -143,12 +142,6 @@ struct workspace_output {
143 char *workspace; 142 char *workspace;
144}; 143};
145 144
146struct pid_workspace {
147 pid_t *pid;
148 char *workspace;
149 time_t *time_added;
150};
151
152struct bar_config { 145struct bar_config {
153 /** 146 /**
154 * One of "dock", "hide", "invisible" 147 * One of "dock", "hide", "invisible"
@@ -300,7 +293,6 @@ struct sway_config {
300 list_t *bars; 293 list_t *bars;
301 list_t *cmd_queue; 294 list_t *cmd_queue;
302 list_t *workspace_outputs; 295 list_t *workspace_outputs;
303 list_t *pid_workspaces;
304 list_t *output_configs; 296 list_t *output_configs;
305 list_t *input_configs; 297 list_t *input_configs;
306 list_t *seat_configs; 298 list_t *seat_configs;
@@ -384,9 +376,6 @@ struct sway_config {
384 } handler_context; 376 } handler_context;
385}; 377};
386 378
387void pid_workspace_add(struct pid_workspace *pw);
388void free_pid_workspace(struct pid_workspace *pw);
389
390/** 379/**
391 * Loads the main config from the given path. is_active should be true when 380 * Loads the main config from the given path. is_active should be true when
392 * reloading the config. 381 * reloading the config.