diff options
| author | kolunmi <113054217+kolunmi@users.noreply.github.com> | 2023-02-14 16:36:10 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-14 16:36:10 -0700 |
| commit | 6ff69669c3d77e47792103c7a71b93a7a14b885c (patch) | |
| tree | 46d18a51150aad8e3608f112d15df14699fcaf9e /config.def.h | |
| parent | 1ab43e173a353c81f068aa5b4d985dd44577fa60 (diff) | |
| parent | 4a7a99fc5c5e128d83447efa1d4d5924b3c3d02f (diff) | |
| download | dwlb-6ff69669c3d77e47792103c7a71b93a7a14b885c.tar.gz | |
Merge pull request #1 from podit/configuration
Configuration
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h new file mode 100644 index 0000000..683adf0 --- /dev/null +++ b/config.def.h @@ -0,0 +1,19 @@ +// bar properties +static bool hidden = false; +static bool bottom = false; +static bool hide_vacant = false; + +// font +static char *fontstr = "monospace:size=10"; + +// tag names +static char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; + +// set 16-bit colors for bar +// 8-bit color can be converted to 16-bit color by simply duplicating values e.g +// 0x55 -> 0x5555, 0xf1 -> 0xf1f1 +static pixman_color_t activecolor = { .red = 0x0000, .green = 0x5555, .blue = 0x7777, .alpha = 0xffff, }; +static pixman_color_t inactivecolor = { .red = 0x2222, .green = 0x2222, .blue = 0x2222, .alpha = 0xffff, }; +static pixman_color_t textcolor = { .red = 0xeeee, .green = 0xeeee, .blue = 0xeeee, .alpha = 0xffff, }; +static pixman_color_t urgbgcolor = { .red = 0xeeee, .green = 0xeeee, .blue = 0xeeee, .alpha = 0xffff, }; +static pixman_color_t urgtextcolor = { .red = 0x2222, .green = 0x2222, .blue = 0x2222, .alpha = 0xffff, }; |