diff options
| author | bakkeby <[email protected]> | 2019-09-14 23:58:04 +0200 |
|---|---|---|
| committer | bakkeby <[email protected]> | 2019-09-14 23:58:04 +0200 |
| commit | 70012dbf2cb8eddddc4ec57ecba4508a9d9664a5 (patch) | |
| tree | 716edff459a3dba1fef191d203edbd57c88b971a /patch/selfrestart.c | |
| parent | 5501f81b9cbc154a2e85fc82cc9eac913b49d8d8 (diff) | |
| download | dwm-flexipatch-70012dbf2cb8eddddc4ec57ecba4508a9d9664a5.tar.gz dwm-flexipatch-70012dbf2cb8eddddc4ec57ecba4508a9d9664a5.zip | |
Adding selfrestart patch
Diffstat (limited to 'patch/selfrestart.c')
| -rw-r--r-- | patch/selfrestart.c | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/patch/selfrestart.c b/patch/selfrestart.c new file mode 100644 index 0000000..4fa6527 --- /dev/null +++ b/patch/selfrestart.c @@ -0,0 +1,68 @@ +#include <unistd.h> +#include <sys/types.h> +#include <sys/stat.h> +#include <stdio.h> +#include <stdlib.h> + +/** + * Magically finds the current's executable path + * + * I'm doing the do{}while(); trick because Linux (what I'm running) is not + * POSIX compilant and so lstat() cannot be trusted on /proc entries + * + * @return char* the path of the current executable + */ +char *get_dwm_path() +{ + struct stat s; + int r, length, rate = 42; + char *path = NULL; + + if (lstat("/proc/self/exe", &s) == -1) { + perror("lstat:"); + return NULL; + } + + length = s.st_size + 1 - rate; + + do + { + length+=rate; + + free(path); + path = malloc(sizeof(char) * length); + + if (path == NULL){ + perror("malloc:"); + return NULL; + } + + r = readlink("/proc/self/exe", path, length); + + if (r == -1){ + perror("readlink:"); + return NULL; + } + } while(r >= length); + + path[r] = '\0'; + + return path; +} + +/** + * self-restart + * + * Initially inspired by: Yu-Jie Lin + * https://sites.google.com/site/yjlnotes/notes/dwm + */ +void self_restart(const Arg *arg) +{ + char *const argv[] = {get_dwm_path(), NULL}; + + if (argv[0] == NULL) { + return; + } + + execv(argv[0], argv); +}
\ No newline at end of file |
