diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-09-09 21:11:43 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-09-09 21:11:43 +0530 |
commit | de58295210063ed7088b411d0da8ef37b33cb863 (patch) | |
tree | 089e946d9b302db19f9f3bb9ea32554761525365 /.config/glava/circle.glsl | |
parent | 3d99cb44596006f8b6cfbf0f1f0daad5e54bd164 (diff) |
switched to lemonbar
Diffstat (limited to '.config/glava/circle.glsl')
-rwxr-xr-x | .config/glava/circle.glsl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.config/glava/circle.glsl b/.config/glava/circle.glsl new file mode 100755 index 0000000..83b8ad3 --- /dev/null +++ b/.config/glava/circle.glsl @@ -0,0 +1,24 @@ +/* center radius (pixels) */ +#define C_RADIUS 128 +/* center line thickness (pixels) */ +#define C_LINE 1.5 +/* outline color */ +#define OUTLINE #333333 +/* Amplify magnitude of the results each bar displays */ +#define AMPLIFY 150 +/* Angle (in radians) for how much to rotate the visualizer */ +#define ROTATE (PI / 2) +/* Whether to switch left/right audio buffers */ +#define INVERT 0 +/* Whether to fill in the space between the line and inner circle */ +#define C_FILL 0 +/* Whether to apply a post-processing image smoothing effect + 1 to enable, 0 to disable. Only works with `xroot` transparency, + and improves performance if disabled. */ +#define C_SMOOTH 1 + +/* Gravity step, overrude frin `smooth_parameters.glsl` */ +#request setgravitystep 6.0 + +/* Smoothing factor, override from `smooth_parameters.glsl` */ +#request setsmoothfactor 0.01 |