Merge branch 'colorterm' into master

This commit is contained in:
Daniel Eklöf 2020-08-23 06:46:13 +02:00
commit ef7429d44a
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 3 additions and 0 deletions

View file

@ -43,6 +43,8 @@
(https://codeberg.org/dnkl/foot/issues/79).
* Implement XTSAVE/XTRESTORE escape sequences, `CSI ? Ps s` and `CSI ?
Ps r` (https://codeberg.org/dnkl/foot/issues/91).
* `$COLORTERM` is now set to `truecolor` at startup, to indicate
support for 24-bit RGB colors.
### Deprecated

View file

@ -287,6 +287,7 @@ slave_spawn(int ptmx, int argc, const char *cwd, char *const *argv,
}
setenv("TERM", term_env, 1);
setenv("COLORTERM", "truecolor", 1);
char **_shell_argv = NULL;
char **shell_argv = NULL;