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:
Brian Ashworth 2019-11-20 22:10:03 -05:00 committed by Drew DeVault
parent 66725f2e27
commit 2f858a1ada
4 changed files with 47 additions and 14 deletions

View file

@ -1,6 +1,7 @@
#ifndef _SWAY_STRINGOP_H
#define _SWAY_STRINGOP_H
#include <stdbool.h>
#include "list.h"
void strip_whitespace(char *str);
@ -26,4 +27,7 @@ char *join_args(char **argv, int argc);
// Split string into 2 by delim, handle quotes
char *argsep(char **stringp, const char *delim, char *matched_delim);
// Expand a path using shell replacements such as $HOME and ~
bool expand_path(char **path);
#endif