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
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue