feat: integrate hyprlauncher, hyprpwcenter, hyprsunset, hyprshade
- F4: hyprlauncher (App-Launcher neben wofi) - F5: hyprpwcenter (PipeWire Audio-Mixer) - F6: hyprsunset toggle (~3500K Nachtmodus) - F7: hyprshade toggle (blue-light-filter.glsl) - windowrules float+center für hyprlauncher und hyprpwcenter - shortcuts.md neu erstellt (war nur in hypr.bak vorhanden) - hypridle.conf ins Repo aufgenommen - packages.txt aktualisiert
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
precision mediump float;
|
||||
varying vec2 v_texcoord;
|
||||
uniform sampler2D tex;
|
||||
|
||||
// Wärmefilter ~3500K: weniger Blau, leicht mehr Rot
|
||||
void main() {
|
||||
vec4 c = texture2D(tex, v_texcoord);
|
||||
c.r = min(c.r * 1.06, 1.0);
|
||||
c.g = c.g * 0.96;
|
||||
c.b = c.b * 0.72;
|
||||
gl_FragColor = c;
|
||||
}
|
||||
Reference in New Issue
Block a user