

0·
2 years agoThanks! Per my other comment, I guess I’ve gotta look at Z-Wave if there are no wifi-only options available. Checking out the T6 Pro now
Thanks! Per my other comment, I guess I’ve gotta look at Z-Wave if there are no wifi-only options available. Checking out the T6 Pro now
My heart still belongs to enlightenment/e17 but I’ve been using i3 for the past few years, and then hyprland for the last 4 months or so. It’s working out well.
Using hyprland+nvidia, I’ve had good luck using this screen_shader command:
hyprctl keyword decoration:screen_shader /path/to/flux.glsl
Where flux.glsl
is
// blue light filter shader
// values from https://reshade.me/forum/shader-discussion/3673-blue-light-filter-similar-to-f-lux
precision mediump float;
varying vec2 v_texcoord;
uniform sampler2D tex;
void main() {
vec4 pixColor = texture2D(tex, v_texcoord);
// green
pixColor[1] *= 0.855;
// blue
pixColor[2] *= 0.725;
gl_FragColor = pixColor;
}
If that’s the case, it’s a bit of an ugly hack but you could make a wrapper script placed in
/usr/local/bin/inkscape
like this:#!/bin/bash flatpack run org.inkscape.Inkscape ${*}
(the
${*}
will pass along all the arguments that the wrapper script was called with)