personal/dotfiles

configs/stw.h in master
Repositories | Summary | Log | Files | README.md | LICENSE

stw.h (969B) download


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