aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-10-08 14:42:48 +0200
committerGitHub <noreply@github.com>2018-10-08 14:42:48 +0200
commit6cb0e58c6d26efa2bca9b3710df08ed1aea09aea (patch)
tree1036293744616474f190d30f7ae5428579e82900
parentb3b17280de54021657eabf2df4c3dbfd0039bac8 (diff)
parent5e1983660dddc40d60026cbd0daf96d880f24fb9 (diff)
downloadsway-6cb0e58c6d26efa2bca9b3710df08ed1aea09aea.zip
sway-6cb0e58c6d26efa2bca9b3710df08ed1aea09aea.tar.gz
sway-6cb0e58c6d26efa2bca9b3710df08ed1aea09aea.tar.bz2
Merge pull request #2791 from RyanDwyer/status-command-optional
swaybar: allow null status_command
-rw-r--r--config.in5
-rw-r--r--sway/commands/bar.c14
-rw-r--r--sway/commands/bar/status_command.c16
-rw-r--r--sway/config/bar.c4
-rw-r--r--sway/ipc-json.c4
-rw-r--r--sway/sway-bar.5.scd3
-rw-r--r--swaybar/bar.c2
7 files changed, 31 insertions, 17 deletions
diff --git a/config.in b/config.in
index 124f825..7252381 100644
--- a/config.in
+++ b/config.in
@@ -202,6 +202,11 @@ bindsym $mod+r mode "resize"
# Read `man 5 sway-bar` for more information about this section.
bar {
position top
+
+ # When the status_command prints a new line to stdout, swaybar updates.
+ # The default just shows the current date and time.
+ status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done
+
colors {
statusline #ffffff
background #323232
diff --git a/sway/commands/bar.c b/sway/commands/bar.c
index f760888..03f4c55 100644
--- a/sway/commands/bar.c
+++ b/sway/commands/bar.c
@@ -46,14 +46,14 @@ struct cmd_results *cmd_bar(int argc, char **argv) {
return error;
}
- if (!config->reading) {
- if (!find_handler(argv[0], bar_config_handlers,
- sizeof(bar_config_handlers))) {
- return cmd_results_new(CMD_FAILURE, "bar",
- "Can only be used in config file.");
+ if (find_handler(argv[0], bar_config_handlers,
+ sizeof(bar_config_handlers))) {
+ if (config->reading) {
+ return config_subcommand(argv, argc, bar_config_handlers,
+ sizeof(bar_config_handlers));
}
- return config_subcommand(argv, argc, bar_config_handlers,
- sizeof(bar_config_handlers));
+ return cmd_results_new(CMD_FAILURE, "bar",
+ "Can only be used in config file.");
}
if (argc > 1) {
diff --git a/sway/commands/bar/status_command.c b/sway/commands/bar/status_command.c
index 6f6f81a..5ea2252 100644
--- a/sway/commands/bar/status_command.c
+++ b/sway/commands/bar/status_command.c
@@ -13,8 +13,18 @@ struct cmd_results *bar_cmd_status_command(int argc, char **argv) {
"status_command", "No bar defined.");
}
free(config->current_bar->status_command);
- config->current_bar->status_command = join_args(argv, argc);
- wlr_log(WLR_DEBUG, "Feeding bar with status command: %s",
- config->current_bar->status_command);
+ config->current_bar->status_command = NULL;
+
+ char *new_command = join_args(argv, argc);
+ if (strcmp(new_command, "-") != 0) {
+ config->current_bar->status_command = new_command;
+ wlr_log(WLR_DEBUG, "Feeding bar with status command: %s",
+ config->current_bar->status_command);
+ }
+
+ if (config->active && !config->validating) {
+ load_swaybars();
+ }
+
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}
diff --git a/sway/config/bar.c b/sway/config/bar.c
index 48a632f..b869579 100644
--- a/sway/config/bar.c
+++ b/sway/config/bar.c
@@ -99,10 +99,6 @@ struct bar_config *default_bar_config(void) {
if (!(bar->bindings = create_list())) {
goto cleanup;
}
- if (!(bar->status_command =
- strdup("while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done"))) {
- goto cleanup;
- }
// set default colors
if (!(bar->colors.background = strndup("#000000ff", 9))) {
goto cleanup;
diff --git a/sway/ipc-json.c b/sway/ipc-json.c
index 7c5a0a5..f02f370 100644
--- a/sway/ipc-json.c
+++ b/sway/ipc-json.c
@@ -514,8 +514,8 @@ json_object *ipc_json_describe_bar_config(struct bar_config *bar) {
json_object_new_string(bar->hidden_state));
json_object_object_add(json, "position",
json_object_new_string(bar->position));
- json_object_object_add(json, "status_command",
- json_object_new_string(bar->status_command));
+ json_object_object_add(json, "status_command", bar->status_command ?
+ json_object_new_string(bar->status_command) : NULL);
json_object_object_add(json, "font",
json_object_new_string((bar->font) ? bar->font : config->font));
if (bar->separator_symbol) {
diff --git a/sway/sway-bar.5.scd b/sway/sway-bar.5.scd
index 00b9386..8c7be8e 100644
--- a/sway/sway-bar.5.scd
+++ b/sway/sway-bar.5.scd
@@ -17,6 +17,9 @@ Sway allows configuring swaybar in the sway configuration file.
https://i3wm.org/docs/i3bar-protocol.html
+ If running this command via IPC, you can disable a running status command by
+ setting the command to a single dash: _swaybar bar bar-0 status\_command -_
+
*pango\_markup* enabled|disabled
Enables or disables pango markup for status lines. This has no effect on
status lines using the i3bar JSON protocol.
diff --git a/swaybar/bar.c b/swaybar/bar.c
index c86e71b..3990f1c 100644
--- a/swaybar/bar.c
+++ b/swaybar/bar.c
@@ -572,8 +572,8 @@ void bar_run(struct swaybar *bar) {
add_event(bar->status->read_fd, POLLIN, status_in, bar);
}
while (1) {
- event_loop_poll();
wl_display_flush(bar->display);
+ event_loop_poll();
}
}