Skip to content

Instantly share code, notes, and snippets.

@luckylittle
Created August 2, 2023 02:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luckylittle/1909763c34b410613e44316505de59bf to your computer and use it in GitHub Desktop.
Save luckylittle/1909763c34b410613e44316505de59bf to your computer and use it in GitHub Desktop.
REMOVE Annoying popup for Chrome/Chromium asking for GNOME Keyring password
#!/bin/zsh
source venv/bin/activate
python -c 'import keyring;keyring.set_password("system","username","");'
python -c 'import keyring;keyring.get_password("system","username");'
deactivate
@luckylittle
Copy link
Author

Alternatively, Seahorse can be used: https://wiki.gnome.org/Apps/Seahorse

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment