Added fun configs

This commit is contained in:
Michel Fedde 2025-03-03 19:25:27 +01:00
parent f83425f071
commit e7cd52edaa
4 changed files with 5 additions and 8 deletions

View file

@ -1,10 +1,6 @@
theme = GruvboxDark
font-family = "JetBrainsMono NFM Medium"
font-family-bold = "JetBrainsMono NFM Bold"
font-family-italic = "JetBrainsMono NFM Medium Italic"
font-family-bold-italic = "JetBrainsMono NFM Bold Italic"
font-size = 12.0

View file

@ -1,5 +1,2 @@
config-file = config.d/general.conf
config-file = config.d/theming.conf
custom-shader = ./shaders/optolith.glsl
custom-shader-animation = always

View file

@ -0,0 +1,4 @@
custom-shader = ./shaders/inside-the-matrix.glsl
custom-shader-animation = always

View file

@ -397,7 +397,7 @@ void mainImage( out vec4 fragColor, in vec2 fragCoord )
rd = normalize(rd);
// vec3 col = rain(ro, rd, time);
vec3 col = rain(ro, rd, time) * 0.25;
vec3 col = rain(ro, rd, time);
// Sample the terminal screen texture including alpha channel
vec4 terminalColor = texture(iChannel0, uv);