aboutsummaryrefslogtreecommitdiffstats
path: root/swaybar/main.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-10 18:34:50 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-10 18:34:50 +1000
commitfa8959532ba3d3b0846dc3fb9f55ccbf4e6655ec (patch)
treec07061b6dbd27ce14fa3c8ba2f8d8ca5dee2fdf0 /swaybar/main.c
parentMerge pull request #2810 from RyanDwyer/fix-docs-backandforth (diff)
downloadsway-fa8959532ba3d3b0846dc3fb9f55ccbf4e6655ec.tar.gz
sway-fa8959532ba3d3b0846dc3fb9f55ccbf4e6655ec.tar.zst
sway-fa8959532ba3d3b0846dc3fb9f55ccbf4e6655ec.zip
Fix program name in version strings
When running swaymsg -v, the version returned is actually the version of swaymsg itself, yet the message displayed was "sway version <version>". This can create confusion if users update sway and swaymsg but don't restart sway, then use swaymsg to check the version. This patch changes the wording to be "swaymsg version <version>" instead, and likewise for swaybar. To get the version of a running sway instance, users should run swaymsg -t get_version.
Diffstat (limited to 'swaybar/main.c')
-rw-r--r--swaybar/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/swaybar/main.c b/swaybar/main.c
index d2c579db..db204f4a 100644
--- a/swaybar/main.c
+++ b/swaybar/main.c
@@ -62,7 +62,7 @@ int main(int argc, char **argv) {
62 bar_id = strdup(optarg); 62 bar_id = strdup(optarg);
63 break; 63 break;
64 case 'v': 64 case 'v':
65 fprintf(stdout, "sway version " SWAY_VERSION "\n"); 65 fprintf(stdout, "swaybar version " SWAY_VERSION "\n");
66 exit(EXIT_SUCCESS); 66 exit(EXIT_SUCCESS);
67 break; 67 break;
68 case 'd': // Debug 68 case 'd': // Debug