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:
2026-04-23 20:13:56 +02:00
parent e84a2d888a
commit 4a20a4401f
6 changed files with 121 additions and 1 deletions
@@ -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;
}