mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
input_cmd_xkb_file: allow shell path expansion
This allows for shell path expansion for input_cmd_xkb_file. The logic has been extracted from output_cmd_background
This commit is contained in:
parent
66725f2e27
commit
2f858a1ada
4 changed files with 47 additions and 14 deletions
|
@ -5,6 +5,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
#include <wordexp.h>
|
||||
#include "list.h"
|
||||
#include "log.h"
|
||||
#include "stringop.h"
|
||||
|
@ -309,3 +310,21 @@ char *argsep(char **stringp, const char *delim, char *matched) {
|
|||
}
|
||||
return start;
|
||||
}
|
||||
|
||||
bool expand_path(char **path) {
|
||||
wordexp_t p = {0};
|
||||
while (strstr(*path, " ")) {
|
||||
*path = realloc(*path, strlen(*path) + 2);
|
||||
char *ptr = strstr(*path, " ") + 1;
|
||||
memmove(ptr + 1, ptr, strlen(ptr) + 1);
|
||||
*ptr = '\\';
|
||||
}
|
||||
if (wordexp(*path, &p, 0) != 0 || p.we_wordv[0] == NULL) {
|
||||
wordfree(&p);
|
||||
return false;
|
||||
}
|
||||
free(*path);
|
||||
*path = join_args(p.we_wordv, p.we_wordc);
|
||||
wordfree(&p);
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue