X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=i3status.c;h=cb563736f05df3513bfe71218e720acd7630a85f;hb=f723688c352ec868ff6d81f75a3dbc62bef7139f;hp=c0a1fe38bb5f87acb8fb458d5d5576c20c7106d0;hpb=1bef3dca5b9ab404e017037ed309907e1ac796c3;p=i3%2Fi3status diff --git a/i3status.c b/i3status.c index c0a1fe3..cb56373 100644 --- a/i3status.c +++ b/i3status.c @@ -1,8 +1,8 @@ /* - * Generates a status line for use with wmii or other minimal window managers + * i3status – Generates a status line for dzen2 or wmii * * - * Copyright (c) 2008-2009 Michael Stapelberg and contributors + * Copyright © 2008-2009 Michael Stapelberg and contributors * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, @@ -64,7 +64,7 @@ #include #endif -#include "wmiistatus.h" +#include "i3status.h" #define BAR "^fg(#333333)^p(5;-2)^ro(2)^p()^fg()^p(5)" @@ -610,7 +610,7 @@ int main(int argc, char *argv[]) { pathbuf[512]; unsigned int i; - char *configfile = PREFIX "/etc/wmiistatus.conf"; + char *configfile = PREFIX "/etc/i3status.conf"; int o, option_index = 0; struct option long_options[] = { {"config", required_argument, 0, 'c'}, @@ -624,7 +624,7 @@ int main(int argc, char *argv[]) { if ((char)o == 'c') configfile = optarg; else if ((char)o == 'h') { - printf("wmiistatus (c) 2008-2009 Michael Stapelberg\n" + printf("i3status (c) 2008-2009 Michael Stapelberg\n" "Syntax: %s [-c ]\n", argv[0]); return 0; }