diff options
author | uint23 <[email protected]> | 2025-05-10 12:02:23 +0100 |
---|---|---|
committer | uint23 <[email protected]> | 2025-05-10 12:02:23 +0100 |
commit | 41c3fa9e7c229d1ae46d503c2a9b19496ece6563 (patch) | |
tree | 1fbc30a4b3b7a1791cd9362641f705fcea19ce13 | |
parent | 183b845b8adaa898af9fadabe7ac0d6e7cd9fb25 (diff) |
make sxwm use fully opaque alpha
thanks to szatanjl dwm patch
-rw-r--r-- | src/sxwm.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1048,7 +1048,8 @@ long parse_col(const char *hex) return WhitePixel(dpy, DefaultScreen(dpy)); } - return col.pixel; + /* return col.pixel; */ + return col.pixel |= 0xff << 24; } void quit(void) @@ -1689,4 +1690,4 @@ int main(int ac, char **av) setup(); run(); return 0; -}
\ No newline at end of file +} |