gri3-wm/i3bar/src/main.c

109 lines
2.9 KiB
C
Raw Normal View History

2010-07-23 04:43:43 +02:00
#include <stdio.h>
#include <i3/ipc.h>
2010-07-23 04:43:43 +02:00
#include <string.h>
#include <unistd.h>
2010-07-26 23:51:51 +02:00
#include <stdlib.h>
2010-08-04 03:34:18 +02:00
#include <errno.h>
2010-07-23 04:43:43 +02:00
#include <ev.h>
2010-08-06 03:32:05 +02:00
#include <getopt.h>
#include <glob.h>
2010-07-23 04:43:43 +02:00
2010-07-22 01:15:18 +02:00
#include "common.h"
2010-08-04 03:34:18 +02:00
char *i3_default_sock_path = "~/.i3/ipc.sock";
char *expand_path(char *path) {
static glob_t globbuf;
if (glob(path, GLOB_NOCHECK | GLOB_TILDE, NULL, &globbuf) < 0) {
printf("glob() failed");
exit(EXIT_FAILURE);
}
char *result = strdup(globbuf.gl_pathc > 0 ? globbuf.gl_pathv[0] : path);
if (result == NULL) {
printf("malloc() failed");
exit(EXIT_FAILURE);
}
globfree(&globbuf);
return result;
}
2010-08-06 03:32:05 +02:00
2010-07-22 01:15:18 +02:00
int main(int argc, char **argv) {
2010-08-06 03:32:05 +02:00
int opt;
int option_index = 0;
char *socket_path = NULL;
char *command = NULL;
char *fontname = NULL;
static struct option long_opt[] = {
{ "socket", required_argument, 0, 's' },
{ "command", required_argument, 0, 'c' },
{ "font", required_argument, 0, 'f' },
{ "help", no_argument, 0, 'h' },
2010-08-07 03:50:22 +02:00
{ "version", no_argument, 0, 'v' },
2010-08-06 03:32:05 +02:00
{ NULL, 0, 0, 0}
};
2010-08-07 03:50:22 +02:00
while ((opt = getopt_long(argc, argv, "s:c:f:hv", long_opt, &option_index)) != -1) {
2010-08-06 03:32:05 +02:00
switch (opt) {
case 's':
socket_path = expand_path(optarg);
2010-08-06 03:32:05 +02:00
break;
case 'c':
command = strdup(optarg);
2010-08-06 03:32:05 +02:00
break;
case 'f':
fontname = strdup(optarg);
2010-08-06 03:32:05 +02:00
break;
2010-08-07 03:50:22 +02:00
case 'v':
printf("i3bar version " I3BAR_VERSION " © 2010 Axel Wagner and contributors\n");
exit(EXIT_SUCCESS);
2010-08-06 03:32:05 +02:00
default:
printf("Usage: %s [-s socket_path] [-c command] [-f font] [-h]\n", argv[0]);
printf("-s <socket_path>: Connect to i3 via <socket_path>\n");
printf("-c <command>: Execute <command> to get sdtin\n");
printf("-f <font>: Use X-Core-Font <font> for display\n");
printf("-h: Display this help-message and exit\n");
exit(EXIT_SUCCESS);
break;
}
}
if (fontname == NULL) {
fontname = "-misc-fixed-medium-r-semicondensed--12-110-75-75-c-60-iso10646-1";
}
if (socket_path == NULL) {
printf("No Socket Path Specified, default to %s\n", i3_default_sock_path);
socket_path = expand_path(i3_default_sock_path);
2010-08-06 03:32:05 +02:00
}
2010-08-03 21:20:11 +02:00
main_loop = ev_default_loop(0);
2010-07-22 01:15:18 +02:00
2010-08-06 03:32:05 +02:00
init_xcb(fontname);
init_outputs();
init_connection(socket_path);
2010-07-22 01:15:18 +02:00
FREE(socket_path);
2010-08-03 21:20:11 +02:00
subscribe_events();
2010-07-22 01:15:18 +02:00
2010-08-03 21:20:11 +02:00
i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_OUTPUTS, NULL);
i3_send_msg(I3_IPC_MESSAGE_TYPE_GET_WORKSPACES, NULL);
2010-08-06 03:32:05 +02:00
start_child(command);
2010-08-04 03:34:18 +02:00
2010-08-03 21:20:11 +02:00
ev_loop(main_loop, 0);
2010-07-22 01:15:18 +02:00
kill_child();
2010-08-04 04:07:16 +02:00
FREE(statusline);
2010-07-26 23:51:51 +02:00
2010-08-03 21:20:11 +02:00
clean_xcb();
ev_default_destroy();
2010-07-30 03:11:54 +02:00
2010-08-03 21:20:11 +02:00
free_workspaces();
FREE_SLIST(outputs, i3_output);
2010-07-22 01:15:18 +02:00
2010-08-03 21:20:11 +02:00
return 0;
2010-07-22 01:15:18 +02:00
}