Hello guys, I have been annoyed at this pop-up as I have to exit it every time I open any Electron (chromium based apps). Does anyone here know how to disable it?

Thanks in advance.

  • one_knight_scripting@lemmy.world
    link
    fedilink
    English
    arrow-up
    18
    ·
    edit-2
    16 days ago

    Okay, that looks like gnome-keyring.

    I’m order for it to login automatically, it needs to be named login the same as your username(that is kwallet) and have the same password.

    Then when you launch electron apps, it’s already unlocked and doesn’t need a password.

    If you need a GUI, try seahorse.

    Don’t know what distro you in, but you can get some intel here: https://wiki.archlinux.org/title/GNOME/Keyring#PAM_step

    Questionable alternative solution: remove the password from the wallet. I don’t run one, but I’ve got drive encryption and rarely if ever save passwords.

    • alecsargent@lemmy.zipOP
      link
      fedilink
      English
      arrow-up
      4
      ·
      16 days ago

      Thanks for the answer. You are correct, it is gnome-keyring and I did have searhorse installed on Arch.

      I followed the wiki to the letter but failed several times, it seemed like it was creating a new login key-ring every time on login. I will research it in more details some other time.

      Thanks again mate!

  • spectrums_coherence@piefed.social
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    15 days ago

    Login keyring should automatically unlock upon first user login after boot, maybe you want to see if it is there, and troubleshoot that.

    Possible reason that the login keyring is locked is: automatic login by bypassing password, or fingerprint login (only the first login, after that, unlock suspended machine should be fine) both will not unlock your login keyring.

    If you need to keep these login, which I honestly don’t recommend (for a general purpose computer), then you can either

    1. delete the login keyring password (by setting it to empty in gnome password and keys or keyrack)
    2. set the electron password store to basic.

    Both of these will store your password and sensitive information in plain text, meaning all program with access to your user space will have unrestricted access to these informations.

  • A_norny_mousse@piefed.zip
    link
    fedilink
    English
    arrow-up
    3
    ·
    16 days ago

    For Chromium it’s

    chromium --password-store=basic  
    

    This should also be possible to set somewhere deep inside settings, in Chromium’s equivalent of about:config.

    • alecsargent@lemmy.zipOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      16 days ago

      That would probably make it that there is no prompt but it is not a viable solution anyway for me. Thanks.