mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 02:13:13 +00:00
0a79983f94
In Sway 0.15, `default_border normal 1` would set 1px wide borders. This recreates that behavior.
28 lines
788 B
C
28 lines
788 B
C
#include "log.h"
|
|
#include "sway/commands.h"
|
|
#include "sway/config.h"
|
|
#include "sway/tree/container.h"
|
|
|
|
struct cmd_results *cmd_default_border(int argc, char **argv) {
|
|
struct cmd_results *error = NULL;
|
|
if ((error = checkarg(argc, "default_border", EXPECTED_AT_LEAST, 1))) {
|
|
return error;
|
|
}
|
|
|
|
if (strcmp(argv[0], "none") == 0) {
|
|
config->border = B_NONE;
|
|
} else if (strcmp(argv[0], "normal") == 0) {
|
|
config->border = B_NORMAL;
|
|
} else if (strcmp(argv[0], "pixel") == 0) {
|
|
config->border = B_PIXEL;
|
|
} else {
|
|
return cmd_results_new(CMD_INVALID, "default_border",
|
|
"Expected 'default_border <none|normal|pixel>' or 'default_border <normal|pixel> <px>'");
|
|
}
|
|
if (argc == 2) {
|
|
config->border_thickness = atoi(argv[1]);
|
|
}
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
}
|