ciderapp / Cider-2

Primary public repository for Cider 2.x
https://cider.sh
124 stars 2 forks source link

UI Flickering in the entire App #656

Closed ericwaetke closed 1 week ago

ericwaetke commented 3 weeks ago

Preflight Checklist

Download Source

Itch

Operating System

Linux 6.1.91

Commit Hash

d46a15d346cc8cc7ae5dfc5ddd19808e291e9bd7

Connect Instance ID

not-logged-in

Build Timestamp

5/30/2024, 8:59:57 PM

Describe the Bug

When interacting with the UI, certain elements flicker, making interacting with them almost not possible Screencast from 2024-06-02 14-05-04.webm

Steps to Reproduce

Just open the app and hover over stuff I guess.

I've just recently switched from windows to NixOS, so i guess that would make it reproducable?

I'm on NixOS 23.11 with Gnome image

This is my Nix File I used to install Cider. (got this from @sapphic.moe on Discord)

{ 
  appimageTools,
  lib,
  ...
}:

appimageTools.wrapType2 rec {
  pname = "cider";
  version = "2.4.1";
  name = "${pname}-${version}";

  src = /home/eric/Music/Cider/Cider-linux-appimage-x64.AppImage;

  extraInstallCommands = let
    contents = appimageTools.extract { inherit name src; };
  in ''
    mv $out/bin/${name} $out/bin/${pname}

    install -m 444 -D ${contents}/${pname}.desktop -t $out/share/applications
    substituteInPlace $out/share/applications/${pname}.desktop \
      --replace 'Exec=AppRun' 'Exec=${pname}'
    cp -r ${contents}/usr/share/icons $out/share
  '';

  meta = with lib; {
    description = "A new look into listening and enjoying Apple Music in style and performance.";
    homepage = "https://github.com/ciderapp/Cider";
    license = licenses.agpl3;
    platforms = [ "x86_64-linux" /* ... */ ];
  };
}

Anything else?

No response

github-actions[bot] commented 3 weeks ago

Hello @ericwaetke :wave:

We really appreciate you taking the time to report this issue, please double check your issue to make sure you are clear and concise in your description. This will help us to help you as quickly as possible.

We'd like to ask you be patient and we will get back to you as soon as we can.

In the meantime, take a look at our FAQs which may answer your question.

Thanks again and we hope you enjoy the app! :smiley:

coredev-uk commented 1 week ago

As Cider is not officially supported on NixOS, we cannot help. I suggest looking into flickering with electron apps on Nix. If you are using wayland, this can be problematic as electron apps can be a bit funny in those circumstances. I cannot help you any further than this, sorry.