diff options
author | Kevin Lange <k@dakko.us> | 2012-09-12 17:40:49 -0700 |
---|---|---|
committer | Kevin Lange <kevin.lange@dakko.us> | 2012-09-12 17:42:27 -0700 |
commit | 01f6c5ec53c2e545a089fc3c885bd5584c5e6821 (patch) | |
tree | 499814ab5de43ec3f35a528621ee14e276e99f8e /src | |
parent | c035cf7f9ba1fdc07f77d6fa2e37e1e48c6ee3dd (diff) | |
download | nyancat-01f6c5ec53c2e545a089fc3c885bd5584c5e6821.tar.gz |
Support the Suckless simple terminal
`st` supports xterm-256color escapes, so just treat
it the same as we treat xterm.
Diffstat (limited to 'src')
-rw-r--r-- | src/nyancat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nyancat.c b/src/nyancat.c index 67820ef..d6eb4e4 100644 --- a/src/nyancat.c +++ b/src/nyancat.c @@ -549,6 +549,8 @@ int main(int argc, char ** argv) { ttype = 3; /* Accepts LINUX mode */ } else if (strstr(term, "vt100") && terminal_width == 40) { ttype = 7; /* No color support, only 40 columns */ + } else if (!strncmp(term, "st", 2)) { + ttype = 1; /* suckless simple terminal is xterm-256color-compatible */ } else { ttype = 2; /* Everything else */ } |