Damian Giebas
Damian Giebas
Solution ```python from tenacity import Retrying, retry_if_result, stop_after_attempt, wait_fixed def get_string(): return 'NOT-TEST' def is_not_expected(value): return value != 'TEST' def main(): retryer = Retrying( retry=retry_if_result(is_not_expected), stop=stop_after_attempt(3), wait=wait_fixed(0), reraise=True, ) for...
I mentioned Python, because I had problem with another apps. Anyway, I changed theme and it didn't help.
I have a time and I was discover there is some problem with amd devices ```bash >altair (altair:72077): Gtk-WARNING **: 15:22:00.732: Theme parsing error: gtk.css:1413:23: 'font-feature-settings' is not a valid...
Maybe another. Here https://forum.snapcraft.io/t/amd-oss-graphics-drivers-missing-access-to-amdgpu-ids-file/12067/12 I found information there is need to add part ```yml layout: /usr/share/libdrm: bind: $SNAP/usr/share/libdrm ``` to meta/snap.yaml. Is it possible to you prepare correct snap which...
Great. I'll be back with feedback to you after update, but no sooner than two weeks from now.
 Sadly it looks like it didn't help. It looks like there is no '/usr/share/libdrm/amdgpu.ids' in '/snap/altair/current/' and it cannot find it anyway.
Thanks for reply. I unsquashed snap and made 2 things. 1. Removed layout section I proposed before because it is not needed. 2. Added required path to LD_LIBRARY_PATH `LD_LIBRARY_PATH: $SNAP_LIBRARY_PATH:$SNAP/lib:$SNAP/usr/lib:$SNAP/lib/x86_64-linux-gnu:$SNAP/usr/lib/x86_64-linux-gnu:$LD_LIBRARY_PATH:$SNAP/lib:$SNAP/usr/lib:$SNAP/lib/x86_64-linux-gnu:$SNAP/usr/lib/x86_64-linux-gnu:$SNAP/usr/share/libdrm`...