]> git.sur5r.net Git - i3/i3status/commitdiff
More comments
authorMichael Stapelberg <michael+x200@stapelberg.de>
Tue, 7 Oct 2008 16:38:22 +0000 (18:38 +0200)
committerMichael Stapelberg <michael+x200@stapelberg.de>
Tue, 7 Oct 2008 16:38:22 +0000 (18:38 +0200)
wmiistatus.c

index 1dd551e006eac5056d9faa0242a3b9f38cddeca9..546d042ff586342d5b6e38e3f6e8b47d966dd960 100644 (file)
@@ -68,6 +68,10 @@ static char *concat(const char *str1, const char *str2) {
        return concatbuf;
 }
 
+/*
+ * Cleans wmii's /rbar directory by deleting all regular files
+ *
+ */
 static void cleanup_rbar_dir() {
        struct dirent *ent;
        DIR *dir;
@@ -86,6 +90,11 @@ static void cleanup_rbar_dir() {
        closedir(dir);
 }
 
+/*
+ * Creates the specified file in wmii's /rbar directory with
+ * correct modes and initializes colors if colormode is enabled
+ * '
+ */
 static void create_file(const char *name) {
        char pathbuf[strlen(wmii_path)+256+1];
 
@@ -100,6 +109,10 @@ static void create_file(const char *name) {
        close(fd);
 }
 
+/*
+ * Writes the given message in the corresponding file in wmii's /rbar directory
+ *
+ */
 static void write_to_statusbar(const char *name, const char *message) {
        char pathbuf[strlen(wmii_path)+256+1];
 
@@ -111,6 +124,10 @@ static void write_to_statusbar(const char *name, const char *message) {
        close(fd);
 }
 
+/*
+ * Writes an errormessage to statusbar
+ *
+ */
 static void write_error_to_statusbar(const char *message) {
        cleanup_rbar_dir();
        create_file("error");