2010-08-07 12:05:16 -04:00
|
|
|
/*
|
2011-10-09 09:28:20 -04:00
|
|
|
* vim:ts=4:sw=4:expandtab
|
|
|
|
*
|
2010-08-07 12:05:16 -04:00
|
|
|
* i3bar - an xcb-based status- and ws-bar for i3
|
2011-10-25 16:19:38 -04:00
|
|
|
* © 2010-2011 Axel Wagner and contributors (see also: LICENSE)
|
2010-08-07 12:05:16 -04:00
|
|
|
*
|
|
|
|
*/
|
2010-07-22 22:43:43 -04:00
|
|
|
#include <stdio.h>
|
2010-07-22 23:04:13 -04:00
|
|
|
#include <i3/ipc.h>
|
2010-07-22 22:43:43 -04:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2010-07-26 17:51:51 -04:00
|
|
|
#include <stdlib.h>
|
2010-08-03 21:34:18 -04:00
|
|
|
#include <errno.h>
|
2010-07-22 22:43:43 -04:00
|
|
|
#include <ev.h>
|
2010-08-05 21:32:05 -04:00
|
|
|
#include <getopt.h>
|
2010-08-05 22:11:44 -04:00
|
|
|
#include <glob.h>
|
2010-07-22 22:43:43 -04:00
|
|
|
|
2010-07-21 19:15:18 -04:00
|
|
|
#include "common.h"
|
2010-08-03 21:34:18 -04:00
|
|
|
|
2010-09-16 23:26:31 -04:00
|
|
|
/*
|
|
|
|
* Glob path, i.e. expand ~
|
|
|
|
*
|
|
|
|
*/
|
2010-08-05 22:11:44 -04:00
|
|
|
char *expand_path(char *path) {
|
|
|
|
static glob_t globbuf;
|
|
|
|
if (glob(path, GLOB_NOCHECK | GLOB_TILDE, NULL, &globbuf) < 0) {
|
2010-09-17 00:49:28 -04:00
|
|
|
ELOG("glob() failed\n");
|
2010-08-05 22:11:44 -04:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2011-10-21 14:30:46 -04:00
|
|
|
char *result = sstrdup(globbuf.gl_pathc > 0 ? globbuf.gl_pathv[0] : path);
|
2010-08-05 22:11:44 -04:00
|
|
|
globfree(&globbuf);
|
|
|
|
return result;
|
|
|
|
}
|
2010-08-05 21:32:05 -04:00
|
|
|
|
2010-08-25 18:01:24 -04:00
|
|
|
void print_usage(char *elf_name) {
|
2011-10-21 13:59:59 -04:00
|
|
|
printf("Usage: %s [-b bar_id] [-s sock_path] [-h] [-v]\n", elf_name);
|
|
|
|
printf("\n");
|
2011-10-31 16:44:55 -04:00
|
|
|
printf("--bar_id <bar_id>\tBar ID for which to get the configuration\n");
|
2010-08-25 18:01:24 -04:00
|
|
|
printf("-s <sock_path>\tConnect to i3 via <sock_path>\n");
|
|
|
|
printf("-h\t\tDisplay this help-message and exit\n");
|
2011-10-19 17:58:19 -04:00
|
|
|
printf("-v\t\tDisplay version number and exit\n");
|
2011-10-21 13:59:59 -04:00
|
|
|
printf("\n");
|
|
|
|
printf(" PLEASE NOTE that i3bar will be automatically started by i3\n"
|
|
|
|
" as soon as there is a 'bar' configuration block in your\n"
|
|
|
|
" config file. You should never need to start it manually.\n");
|
|
|
|
printf("\n");
|
2010-08-25 18:01:24 -04:00
|
|
|
}
|
|
|
|
|
2010-11-10 20:47:30 -05:00
|
|
|
/*
|
|
|
|
* We watch various signals, that are there to make our application stop.
|
|
|
|
* If we get one of those, we ev_unloop() and invoke the cleanup-routines
|
|
|
|
* in main() with that
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void sig_cb(struct ev_loop *loop, ev_signal *watcher, int revents) {
|
|
|
|
switch (watcher->signum) {
|
|
|
|
case SIGTERM:
|
|
|
|
DLOG("Got a SIGTERM, stopping\n");
|
|
|
|
break;
|
|
|
|
case SIGINT:
|
|
|
|
DLOG("Got a SIGINT, stopping\n");
|
|
|
|
break;
|
|
|
|
case SIGHUP:
|
|
|
|
DLOG("Got a SIGHUP, stopping\n");
|
|
|
|
}
|
|
|
|
ev_unloop(main_loop, EVUNLOOP_ALL);
|
|
|
|
}
|
|
|
|
|
2010-07-21 19:15:18 -04:00
|
|
|
int main(int argc, char **argv) {
|
2010-08-05 21:32:05 -04:00
|
|
|
int opt;
|
|
|
|
int option_index = 0;
|
2011-01-10 23:02:55 -05:00
|
|
|
char *socket_path = getenv("I3SOCK");
|
2011-01-22 11:41:24 -05:00
|
|
|
char *i3_default_sock_path = "/tmp/i3-ipc.sock";
|
2010-08-05 21:32:05 -04:00
|
|
|
|
2011-10-19 17:58:19 -04:00
|
|
|
/* Initialize the standard config to use 0 as default */
|
|
|
|
memset(&config, '\0', sizeof(config_t));
|
2010-08-25 18:02:35 -04:00
|
|
|
|
2010-08-05 21:32:05 -04:00
|
|
|
static struct option long_opt[] = {
|
2010-10-23 23:24:51 -04:00
|
|
|
{ "socket", required_argument, 0, 's' },
|
2011-10-19 17:58:19 -04:00
|
|
|
{ "bar_id", required_argument, 0, 0 },
|
2010-10-23 23:24:51 -04:00
|
|
|
{ "help", no_argument, 0, 'h' },
|
|
|
|
{ "version", no_argument, 0, 'v' },
|
|
|
|
{ NULL, 0, 0, 0}
|
2010-08-05 21:32:05 -04:00
|
|
|
};
|
|
|
|
|
2011-10-19 17:58:19 -04:00
|
|
|
while ((opt = getopt_long(argc, argv, "s:hv", long_opt, &option_index)) != -1) {
|
2010-08-05 21:32:05 -04:00
|
|
|
switch (opt) {
|
|
|
|
case 's':
|
2010-08-05 22:11:44 -04:00
|
|
|
socket_path = expand_path(optarg);
|
2010-08-05 21:32:05 -04:00
|
|
|
break;
|
2010-08-06 21:50:22 -04:00
|
|
|
case 'v':
|
2011-08-01 10:13:19 -04:00
|
|
|
printf("i3bar version " I3_VERSION " © 2010-2011 Axel Wagner and contributors\n");
|
2010-08-06 21:50:22 -04:00
|
|
|
exit(EXIT_SUCCESS);
|
2010-08-25 18:01:24 -04:00
|
|
|
break;
|
2011-10-19 17:58:19 -04:00
|
|
|
case 0:
|
|
|
|
if (!strcmp(long_opt[option_index].name, "bar_id")) {
|
|
|
|
FREE(config.bar_id);
|
|
|
|
config.bar_id = sstrdup(optarg);
|
|
|
|
}
|
2011-03-20 14:29:30 -04:00
|
|
|
break;
|
2010-08-05 21:32:05 -04:00
|
|
|
default:
|
2010-08-25 18:01:24 -04:00
|
|
|
print_usage(argv[0]);
|
2010-08-05 21:32:05 -04:00
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-19 17:58:19 -04:00
|
|
|
if (!config.bar_id) {
|
|
|
|
/* TODO: maybe we want -f which will automatically ask i3 for the first
|
|
|
|
* configured bar (and error out if there are too many)? */
|
|
|
|
ELOG("No bar_id passed. Please let i3 start i3bar or specify --bar_id\n");
|
|
|
|
exit(EXIT_FAILURE);
|
2011-02-21 09:47:58 -05:00
|
|
|
}
|
|
|
|
|
2010-08-03 15:20:11 -04:00
|
|
|
main_loop = ev_default_loop(0);
|
2010-07-21 19:15:18 -04:00
|
|
|
|
2011-10-19 17:58:19 -04:00
|
|
|
char *atom_sock_path = init_xcb_early();
|
2011-03-19 17:06:08 -04:00
|
|
|
|
|
|
|
if (socket_path == NULL) {
|
|
|
|
socket_path = atom_sock_path;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (socket_path == NULL) {
|
|
|
|
ELOG("No Socket Path Specified, default to %s\n", i3_default_sock_path);
|
|
|
|
socket_path = expand_path(i3_default_sock_path);
|
|
|
|
}
|
2010-10-23 23:24:51 -04:00
|
|
|
|
2010-08-05 21:32:05 -04:00
|
|
|
init_outputs();
|
2011-07-31 12:26:52 -04:00
|
|
|
if (init_connection(socket_path)) {
|
2011-10-19 17:58:19 -04:00
|
|
|
/* Request the bar configuration. When it arrives, we fill the config array. */
|
|
|
|
i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_BAR_CONFIG, config.bar_id);
|
2011-04-21 14:24:02 -04:00
|
|
|
}
|
2010-07-22 23:04:13 -04:00
|
|
|
|
2010-11-10 20:47:30 -05:00
|
|
|
/* We listen to SIGTERM/QUIT/INT and try to exit cleanly, by stopping the main-loop.
|
|
|
|
* We only need those watchers on the stack, so putting them on the stack saves us
|
|
|
|
* some calls to free() */
|
2011-10-21 14:30:46 -04:00
|
|
|
ev_signal *sig_term = smalloc(sizeof(ev_signal));
|
|
|
|
ev_signal *sig_int = smalloc(sizeof(ev_signal));
|
|
|
|
ev_signal *sig_hup = smalloc(sizeof(ev_signal));
|
2011-04-28 13:54:31 -04:00
|
|
|
|
|
|
|
ev_signal_init(sig_term, &sig_cb, SIGTERM);
|
|
|
|
ev_signal_init(sig_int, &sig_cb, SIGINT);
|
|
|
|
ev_signal_init(sig_hup, &sig_cb, SIGHUP);
|
2010-11-10 20:47:30 -05:00
|
|
|
|
2011-04-28 13:54:31 -04:00
|
|
|
ev_signal_start(main_loop, sig_term);
|
|
|
|
ev_signal_start(main_loop, sig_int);
|
|
|
|
ev_signal_start(main_loop, sig_hup);
|
2010-11-10 20:47:30 -05:00
|
|
|
|
2010-09-16 23:26:31 -04:00
|
|
|
/* From here on everything should run smooth for itself, just start listening for
|
|
|
|
* events. We stop simply stop the event-loop, when we are finished */
|
2010-08-03 15:20:11 -04:00
|
|
|
ev_loop(main_loop, 0);
|
2010-07-21 19:15:18 -04:00
|
|
|
|
2010-08-04 23:09:59 -04:00
|
|
|
kill_child();
|
2010-08-03 22:07:16 -04:00
|
|
|
|
2011-01-02 19:39:49 -05:00
|
|
|
FREE(statusline_buffer);
|
2010-07-26 17:51:51 -04:00
|
|
|
|
2010-08-03 15:20:11 -04:00
|
|
|
clean_xcb();
|
2010-08-04 23:09:59 -04:00
|
|
|
ev_default_destroy();
|
2010-07-29 21:11:54 -04:00
|
|
|
|
2010-08-03 15:20:11 -04:00
|
|
|
free_workspaces();
|
2010-07-21 19:15:18 -04:00
|
|
|
|
2010-08-03 15:20:11 -04:00
|
|
|
return 0;
|
2010-07-21 19:15:18 -04:00
|
|
|
}
|