2019-09-06 21:37:30 +00:00
|
|
|
void
|
2020-06-14 17:56:52 +00:00
|
|
|
runautostart(void)
|
|
|
|
{
|
|
|
|
char *pathpfx;
|
|
|
|
char *path;
|
|
|
|
char *xdgdatahome;
|
|
|
|
char *home;
|
2022-08-07 08:50:25 +00:00
|
|
|
struct stat sb;
|
2020-06-14 17:56:52 +00:00
|
|
|
|
|
|
|
if ((home = getenv("HOME")) == NULL)
|
|
|
|
/* this is almost impossible */
|
|
|
|
return;
|
|
|
|
|
2022-08-07 08:50:25 +00:00
|
|
|
/* if $XDG_DATA_HOME is set and not empty, use $XDG_DATA_HOME/dwm,
|
2020-06-14 17:56:52 +00:00
|
|
|
* otherwise use ~/.local/share/dwm as autostart script directory
|
|
|
|
*/
|
2022-08-07 08:50:25 +00:00
|
|
|
xdgdatahome = getenv("XDG_DATA_HOME");
|
|
|
|
if (xdgdatahome != NULL && *xdgdatahome != '\0') {
|
2020-06-14 17:56:52 +00:00
|
|
|
/* space for path segments, separators and nul */
|
2022-08-07 08:50:25 +00:00
|
|
|
pathpfx = ecalloc(1, strlen(xdgdatahome) + strlen(dwmdir) + 2);
|
2020-06-14 17:56:52 +00:00
|
|
|
|
|
|
|
if (sprintf(pathpfx, "%s/%s", xdgdatahome, dwmdir) <= 0) {
|
|
|
|
free(pathpfx);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* space for path segments, separators and nul */
|
2022-08-07 08:50:25 +00:00
|
|
|
pathpfx = ecalloc(1, strlen(home) + strlen(localshare)
|
|
|
|
+ strlen(dwmdir) + 3);
|
2020-06-14 17:56:52 +00:00
|
|
|
|
|
|
|
if (sprintf(pathpfx, "%s/%s/%s", home, localshare, dwmdir) < 0) {
|
|
|
|
free(pathpfx);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check if the autostart script directory exists */
|
|
|
|
if (! (stat(pathpfx, &sb) == 0 && S_ISDIR(sb.st_mode))) {
|
2022-08-07 08:50:25 +00:00
|
|
|
/* the XDG conformant path does not exist or is no directory
|
2020-06-14 17:56:52 +00:00
|
|
|
* so we try ~/.dwm instead
|
|
|
|
*/
|
2022-08-07 08:50:25 +00:00
|
|
|
char *pathpfx_new = realloc(pathpfx, strlen(home) + strlen(dwmdir) + 3);
|
|
|
|
if(pathpfx_new == NULL) {
|
2020-06-14 17:56:52 +00:00
|
|
|
free(pathpfx);
|
|
|
|
return;
|
|
|
|
}
|
2022-08-07 08:50:25 +00:00
|
|
|
pathpfx = pathpfx_new;
|
2020-06-14 17:56:52 +00:00
|
|
|
|
|
|
|
if (sprintf(pathpfx, "%s/.%s", home, dwmdir) <= 0) {
|
|
|
|
free(pathpfx);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* try the blocking script first */
|
2022-08-07 08:50:25 +00:00
|
|
|
path = ecalloc(1, strlen(pathpfx) + strlen(autostartblocksh) + 2);
|
|
|
|
if (sprintf(path, "%s/%s", pathpfx, autostartblocksh) <= 0) {
|
|
|
|
free(path);
|
2020-06-14 17:56:52 +00:00
|
|
|
free(pathpfx);
|
2022-08-07 08:50:25 +00:00
|
|
|
}
|
2019-09-06 21:37:30 +00:00
|
|
|
|
2020-06-14 17:56:52 +00:00
|
|
|
if (access(path, X_OK) == 0)
|
|
|
|
system(path);
|
2019-09-06 21:37:30 +00:00
|
|
|
|
2020-06-14 17:56:52 +00:00
|
|
|
/* now the non-blocking script */
|
2022-08-07 08:50:25 +00:00
|
|
|
if (sprintf(path, "%s/%s", pathpfx, autostartsh) <= 0) {
|
2020-06-14 17:56:52 +00:00
|
|
|
free(path);
|
|
|
|
free(pathpfx);
|
|
|
|
}
|
2021-06-14 05:16:17 +00:00
|
|
|
|
2022-08-07 08:50:25 +00:00
|
|
|
if (access(path, X_OK) == 0)
|
|
|
|
system(strcat(path, " &"));
|
|
|
|
|
|
|
|
free(pathpfx);
|
|
|
|
free(path);
|
|
|
|
}
|