mirror of
https://github.com/swaywm/sway.git
synced 2025-12-31 11:08:43 -05:00
This adds quotes around multiword arguments before they are passed to
`/bin/sh -c` in an exec command.
Example:
I connect to irc like this:
exec termite -e "mosh server tmux a"
Without this patch the arguments are passed to sh as:
termite -e mosh server tmux a
When it should be:
termite -e "mosh server tmux a"
For the command to work.
|
||
|---|---|---|
| .. | ||
| CMakeLists.txt | ||
| commands.c | ||
| config.c | ||
| container.c | ||
| criteria.c | ||
| debug_log.c | ||
| extensions.c | ||
| focus.c | ||
| handlers.c | ||
| input.c | ||
| input_state.c | ||
| ipc-server.c | ||
| layout.c | ||
| main.c | ||
| output.c | ||
| resize.c | ||
| sway-input.5.txt | ||
| sway.1.txt | ||
| sway.5.txt | ||
| workspace.c | ||