I'm using Ubuntu Maverick (Gnome), a month ago I updated like usual whenever Update Manager informed me of new updates. The thing that happened is that a program called kdewallet
got installed on my machine, and every time I try to do something that requires password like svn
, it pops up and starts getting really annoying. How can I get rid of it? It's not even in the Synaptic Package Manager.
KDE Wallet is a core part of KDE, it's in the package
kdebase-runtime
.To disable it run
kcmshell4 kwalletconfig
and continue at step 3 or start from the beginning:Apply
to apply the changes and close the settings window.To get a list of the programs that depends on the
kdebase-runtime
package, run:On Ubuntu, the output shows just "kdebase-runtime [newline] Reverse Depends:". On Kubuntu, a whole list follows.
I got rid of the "KDE Wallet System" dialog (whenever I started Chrome) as follows:
Edit
~/.config/kwalletrc
(see note below), and addKill the kdewallet daemon:
pkill kdewallet5
(orkillall kdewallet5
)I found this option when I looked through the source code (on kde.org or at the Github mirror).
If putting
kwalletrc
in~/.config
does not work, then your system probably uses a different directory for storing configuration files. The config file is created in a directory identified byQStandardPaths::GenericConfigLocation
, so I usedqtpaths
to look up the path (~/.config
=/home/rob/.config
in my case):Note: if you don't want to completely disable kwallet, but only for Chrome, you can use the
--password-store=basic
flag as I explained at Disable kwallet popups from chrome. If you start Chrome via a wrapper script or shortcut, I recommend using--password-store=basic
in case you need kwallet for something else. I disabled kwalletd instead of using this flag because I develop Chrome, and it's inconvenient to add this flag all the time when I run./chrome
.(Tested on ArchLinux, but it should also work on Ubuntu. Use
sudo apt-get install qttools5-dev-tools
if you want to useqtpaths
to find the configuration directory).I executed:
OS: Ubuntu 10.04.4 LTS.
In Ubuntu 14.04 (trusty), step (2) is now "Go to Account Details"
I use Ubuntu 16.04.LTS and found the 'kdwalletrc' file in this path
Switch the option 'Enable' from 'true' to 'false' to disable kdeWallet
Disable password required notification Kwallet
RESUME
KDE menu => system preferences => notifications => wallet (dropdown) => password required option => show popup (uncheck) => reboot.
DESCRIPTION
I'm spanish and maybe the options could have another translation.
I use KDE Plasma 5.12. Open the KDE menu and search "system preferences" and click on it. Now search for "notifications". At top right of the window you could see a dropdown, in my case, I had already choosen "accesibility" option, then change it and choose "wallet". The last step, click on "password required" option and uncheck show pop up or something similar (at bottom). Save and reboot, done :-).
Hope it helps and you can disable this annoying notifications.