aboutsummaryrefslogtreecommitdiff
path: root/swaybar/main.c
diff options
context:
space:
mode:
authorMikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-02-22 17:27:17 +0100
committerMikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-02-27 22:12:35 +0100
commit6d57f03028b4b32b4377d869be8de9a7e6aa55ee (patch)
tree786e749fd53707e36e4b9927516f8375857eec87 /swaybar/main.c
parente19e32cf81a2f28bc9434b252facc96f1a55cb91 (diff)
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) {
};
const char *usage =
- "Usage: swaybar [options...] <output>\n"
+ "Usage: swaybar [options...]\n"
"\n"
" -h, --help Show help message and quit.\n"
" -v, --version Show the version number and quit.\n"
@@ -95,15 +95,9 @@ int main(int argc, char **argv) {
}
}
- if (argc == optind) {
- sway_abort("No output index provided");
- }
-
- int desired_output = atoi(argv[optind]);
-
signal(SIGTERM, sig_handler);
- bar_setup(&swaybar, socket_path, bar_id, desired_output);
+ bar_setup(&swaybar, socket_path, bar_id);
free(socket_path);
free(bar_id);