Revision 67a9a9459633dcf11ca4c37dc224ce8f9a8945b6 authored by Drew DeVault on 13 October 2016, 02:42:23 UTC, committed by Drew DeVault on 13 October 2016, 02:42:23 UTC
This does two important things when using alpha:

1. At corners, borders don't double in opacity
2. Foreground elements (text) can be made transparent and you can see
fully through to the wallpaper
1 parent 56a7e5f
Raw File
readline.h
#ifndef _SWAY_READLINE_H
#define _SWAY_READLINE_H

#include <stdio.h>

char *read_line(FILE *file);
char *read_line_buffer(FILE *file, char *string, size_t string_len);

#endif
back to top