diff options
| author | marcellus <msimon_fr@hotmail.com> | 2023-05-30 20:26:13 +0200 |
|---|---|---|
| committer | marcellus <msimon_fr@hotmail.com> | 2023-05-30 20:26:13 +0200 |
| commit | 71031b57a14824f351797acc6629732dcae1bb17 (patch) | |
| tree | cd928c7009a80a4fa46049d40d2d9125ea56d126 /glava/bars.glsl | |
| parent | 6e8a3eddbff101effbc8a1e6b02a9e3afad3bfaa (diff) | |
add: addition of glava configs
Diffstat (limited to 'glava/bars.glsl')
| -rwxr-xr-x | glava/bars.glsl | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/glava/bars.glsl b/glava/bars.glsl new file mode 100755 index 0000000..6e6a7b0 --- /dev/null +++ b/glava/bars.glsl @@ -0,0 +1,33 @@ + +/* Center line thickness (pixels) */ +#define C_LINE 1 +/* Width (in pixels) of each bar */ +#define BAR_WIDTH 4 +/* Width (in pixels) of each bar gap */ +#define BAR_GAP 2 +/* Outline color */ +#define BAR_OUTLINE #262626 +/* Outline width (in pixels, set to 0 to disable outline drawing) */ +#define BAR_OUTLINE_WIDTH 0 +/* Amplify magnitude of the results each bar displays */ +#define AMPLIFY 300 +/* Whether the current settings use the alpha channel; + enabling this is required for alpha to function + correctly on X11 with `"native"` transparency. */ +#define USE_ALPHA 0 +/* How strong the gradient changes */ +#define GRADIENT_POWER 60 +/* Bar color changes with height */ +#define GRADIENT (d / GRADIENT_POWER + 1) +/* Bar color */ +#define COLOR (#3366b2 * GRADIENT) +/* Direction that the bars are facing, 0 for inward, 1 for outward */ +#define DIRECTION 0 +/* Whether to switch left/right audio buffers */ +#define INVERT 0 +/* Whether to flip the output vertically */ +#define FLIP 0 +/* Whether to mirror output along `Y = X`, causing output to render on the left side of the window */ +/* Use with `FLIP 1` to render on the right side */ +#define MIRROR_YX 0 + |
