On Thu, Jul 17, 2025 at 06:00:44PM +0200, Thorsten G. wrote: > LANG=C && GBM_BACKENDS_PATH=/usr/lib/x86_64-linux-gnu/nvidia/current && > GBM_BACKEND=nvidia-drm && liferea
I think that you need to remove those '&&', otherwise liferea won't get those variables. $ COLOR=green && SHAPE=circle && sh -c 'echo $COLOR $SHAPE' $ COLOR=green SHAPE=circle sh -c 'echo $COLOR $SHAPE' green circle Berto