aboutsummaryrefslogtreecommitdiffstats
path: root/swaybar/main.c
diff options
context:
space:
mode:
authorLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-02-22 17:27:17 +0100
committerLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-02-27 22:12:35 +0100
commit6d57f03028b4b32b4377d869be8de9a7e6aa55ee (patch)
tree786e749fd53707e36e4b9927516f8375857eec87 /swaybar/main.c
parentMake protocol specifications follow the DTD (diff)
downloadsway-6d57f03028b4b32b4377d869be8de9a7e6aa55ee.tar.gz
sway-6d57f03028b4b32b4377d869be8de9a7e6aa55ee.tar.zst
sway-6d57f03028b4b32b4377d869be8de9a7e6aa55ee.zip
Make single bar handle multiple outputs
Diffstat (limited to 'swaybar/main.c')
-rw-r--r--swaybar/main.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/swaybar/main.c b/swaybar/main.c
index c6bbc7a5..d7534f5d 100644
--- a/swaybar/main.c
+++ b/swaybar/main.c
@@ -35,7 +35,7 @@ int main(int argc, char **argv) {
35 }; 35 };
36 36
37 const char *usage = 37 const char *usage =
38 "Usage: swaybar [options...] <output>\n" 38 "Usage: swaybar [options...]\n"
39 "\n" 39 "\n"
40 " -h, --help Show help message and quit.\n" 40 " -h, --help Show help message and quit.\n"
41 " -v, --version Show the version number and quit.\n" 41 " -v, --version Show the version number and quit.\n"
@@ -95,15 +95,9 @@ int main(int argc, char **argv) {
95 } 95 }
96 } 96 }
97 97
98 if (argc == optind) {
99 sway_abort("No output index provided");
100 }
101
102 int desired_output = atoi(argv[optind]);
103
104 signal(SIGTERM, sig_handler); 98 signal(SIGTERM, sig_handler);
105 99
106 bar_setup(&swaybar, socket_path, bar_id, desired_output); 100 bar_setup(&swaybar, socket_path, bar_id);
107 101
108 free(socket_path); 102 free(socket_path);
109 free(bar_id); 103 free(bar_id);