diff options
| author | stkhan <personal@slickd.xyz> | 2023-03-31 19:39:34 -0500 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2023-03-31 19:39:34 -0500 |
| commit | 07afc07ffff324f3a355f2437bd643b616fe0af4 (patch) | |
| tree | d4462f24f19b309d693037ae7ec8fcab5168583b /wm/dwl/config.def.h | |
| parent | c0092ba1563cd27086f968db59de420299508947 (diff) | |
basic wm
Diffstat (limited to 'wm/dwl/config.def.h')
| -rw-r--r-- | wm/dwl/config.def.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/wm/dwl/config.def.h b/wm/dwl/config.def.h index 2fd5215..c5c3163 100644 --- a/wm/dwl/config.def.h +++ b/wm/dwl/config.def.h @@ -7,6 +7,12 @@ static const float focuscolor[] = {1.0, 0.0, 0.0, 1.0}; /* To conform the xdg-protocol, set the alpha to zero to restore the old behavior */ static const float fullscreen_bg[] = {0.1, 0.1, 0.1, 1.0}; +/* Autostart */ +static const char *const autostart[] = { + "wbg", "/path/to/your/image", NULL, + NULL /* terminate */ +}; + /* tagging */ static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; |