]> Dogcows Code - chaz/openbox/blobdiff - openbox/openbox.c
change buttons masks so that there are masks for max and desktop buttons when their...
[chaz/openbox] / openbox / openbox.c
index fa31204fc9e178494840a15b3ef2255dccd9e210..117349f23972910cb05c2f7d3844deb0e94473e2 100644 (file)
@@ -98,6 +98,11 @@ int main(int argc, char **argv)
     mkdir(path, (S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP |
                  S_IROTH | S_IWOTH | S_IXOTH));
     g_free(path);
+    /* create the ~/.openbox/themes dir */
+    path = g_build_filename(g_get_home_dir(), ".openbox", "themes", NULL);
+    mkdir(path, (S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IWGRP | S_IXGRP |
+                 S_IROTH | S_IWOTH | S_IXOTH));
+    g_free(path);
      
     /* parse out command line args */
     parse_args(argc, argv);
This page took 0.022876 seconds and 4 git commands to generate.