--- ipc.c.orig Sat Jul 3 15:39:09 1999 +++ ipc.c Tue Dec 7 23:46:33 1999 @@ -15,15 +15,15 @@ /* note: * this is really cheesy right now, basically to send a command to a running - * gqmpeg, place a command in ~/.gqmpeg/command + * gqmpeg, place a command in ~/.desk/gqmpeg/command * the best way would be: - * echo "play" > ~/.gqmpeg/commands + * echo "play" > ~/.desk/gqmpeg/commands * the file only exists when gqmpeg is accepting commands. * the file is checked every 1/10th second. */ -#define GQMPEG_FILE_IPC_COMMAND ".gqmpeg/command" -#define GQMPEG_FILE_IPC_LOCK ".gqmpeg/command.pid" +#define GQMPEG_FILE_IPC_COMMAND ".desk/gqmpeg/command" +#define GQMPEG_FILE_IPC_LOCK ".desk/gqmpeg/command.pid" static gint ipc_fd_id = -1; static FILE *ipc_file_id = NULL; @@ -103,7 +103,7 @@ } else { - gchar *path = g_strconcat(homedir(), "/.gqmpeg/command", NULL); + gchar *path = g_strconcat(homedir(), "/.desk/gqmpeg/command", NULL); f = fopen(path, "w"); /* blocking, huh ? */ g_free(path); }