stw.h (969B)
1 /* See LICENSE file for copyright and license details. */ 2 3 static int borderpx = 0; 4 static char font[] = "Man:size=10"; 5 6 /* background opacity */ 7 static double alpha = 1.0; 8 9 /* X window geometry */ 10 struct g px = {0}; 11 struct g py = {0}; 12 struct g tx = {0}; 13 struct g ty = {0}; 14 15 /* text alignment: l, r and c for left, right and centered respectively */ 16 static char align = 'l'; 17 18 /* foreground and background colors */ 19 static char *colors[2] = { "#000000", "#dddddd" }; 20 21 /* time in seconds between subcommand runs. 22 0 will completely disable subcommand restarts and -1 will make them instant. 23 in any case a click on a window will still immediately restart subcommand */ 24 static int period = 5; 25 26 /* delimeter string, encountered as a separate line in subcommand output 27 signals stw to render buffered text and continue with next frame; 28 it is the only valid use of non-printable characters in subcommand output */ 29 static char delimeter[] = "\4"; 30 31 static bool window_on_top = 0;