diff options
author | Raheman Vaiya <r.vaiya@gmail.com> | 2021-12-26 18:57:04 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2021-12-26 18:57:44 +0100 |
commit | 8e310303903792c010d03c046ba75f8b18f7d3a7 (patch) | |
tree | f634e71e556b312e64ed1cc9ddd5b1e3fb3ced71 /st.h | |
parent | 2f6e597ed871cff91c627850d03152cae5f45779 (diff) |
Add support for OSC color sequences
Diffstat (limited to 'st.h')
-rw-r--r-- | st.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -111,6 +111,8 @@ void *xmalloc(size_t); void *xrealloc(void *, size_t); char *xstrdup(const char *); +int xgetcolor(int x, unsigned char *r, unsigned char *g, unsigned char *b); + /* config.h globals */ extern char *utmp; extern char *scroll; @@ -123,3 +125,4 @@ extern char *termname; extern unsigned int tabspaces; extern unsigned int defaultfg; extern unsigned int defaultbg; +extern unsigned int defaultcs; |