You are not logged in.
By default kwallet is creating these entries in `~/.local/share/kwalletd/kdewallet_attributes.json` which doesn’t show up in kwallet managet,
```
“Secret Service/org.freedesktop.Secret.Generic__1_”: {
“$fdo_created”: “xxxx”,
“$fdo_mime_type”: “text/plain”,
“$fdo_modified”: “xxxx”,
“attributes”: {
“account”: “xxxxxx”,
“service”: “Bitwarden_auto”
}
}
```
But when mentioned explicitly like with electron apps with `password-store`
```
❯ cat ~/.config/chrome-flags.conf
–password-store=kwallet6
```
then it’s append a new tag called `xdg:schema` in `~/.local/share/kwalletd/kdewallet_attributes.json` and also shows up in kwalletmanager5
```
“Chrome Keys/Chrome Safe Storage”: {
“$fdo_created”: “1770498072”,
“$fdo_mime_type”: “text/plain”,
“$fdo_modified”: “1770498072”,
“attributes”: {
“server”: “Chrome Keys”,
“type”: “plaintext”,
“user”: “Chrome Safe Storage”,
“xdg:schema”: “org.qt.keychain”
}
},
```
Hypr config autostart
```
❯ cat ~/.config/hypr/hyprland.conf.d/execs.conf
exec-once = /usr/lib/pam_kwallet_init
exec-once = kwalletd6
```
But when login with kde plasma shell, (full kde) all entries shows up in walletmanager.
Any way to force all the all to use `kwallet6` format which shows up in kwallet manager?
Last edited by arpanrec (2026-02-08 11:42:15)
Offline