Announcement
Collapse
No announcement yet.
can't use double click in kde
Collapse
This topic is closed.
X
X
-
-
Have you anywhere at any time run System Settings or other tool with sudo to edit or change any local user setting? (not system level settings) The inability of user config changes to stick is a classic sign of incorrect permissions on the file(s). Check permissions on your ~/.config/kdeglobals file, to see if it owned by root instead of your user, and that it is writeable. This is the file that stores the setting for the single/double click option, among other things.
- Top
- Bottom
-
The first thing...
https://forum.kde.org/viewtopic.php?f=14&t=38828
Examine if the problem is local
To determinate if a problem is caused by your configuration or is due to a bug/fault in your system (such as an incomplete upgrade), you can try to reproduce it with a clean system. The easiest way is to create a new user:
- Create a new user.
- Log in using the new user. Do you experience the same problem here as well?
- Top
- Bottom
Comment
-
Yes the problem is cause by the config of my user, it works with a new user.
Turns out I have no permission on the file... Don't know how it happened.
Code:-rw------- 1 root root 2477 nov. 1 21:15 /home/myuser/.config/kdeglobals
Thanks for your help.
- Top
- Bottom
Comment
-
Open a console and ensure you are in your users home directory. Then type:
Code:sudo chown -R myuser:myuser *
This will change the ownership on all directories/files within your home directory to you, which is what they all are supposed to be. Then logout/reboot/log in. Things should now work as they are supposed to,Windows no longer obstructs my view.
Using Kubuntu Linux since March 23, 2007.
"It is a capital mistake to theorize before one has data." - Sherlock Holmes
- Top
- Bottom
Comment
-
Originally posted by Snowhog View PostCode:sudo chown -R myuser:myuser *
If the "dotglob" shell option is not enabled in bash (and it isn't by default) "*" does not match hidden dotfiles/directories (files and directories that begin with "."), which means this command will skip all these files and directories in the users $HOME (unless the user has set the "dotglob" shell option to "on", of course, or uses a shell with different [default] behavior).
It's nearly always better to set the target explicitly (this also prevents any accidents when not in the correct target directory), for example:
Code:sudo chown -R myuser:myuser $HOME
- Top
- Bottom
Comment
-
Originally posted by allaf View PostYeah, but I already did that. Didn't work
Just to make sure, you can run:
Code:find ~ ! -writable -exec ls -l '{}' \+
- Top
- Bottom
Comment
-
Originally posted by kubicle View PostThen the problem is likely not ownership related, but could be caused by something else.
Just to make sure, you can run:
Code:find ~ ! -writable -exec ls -l '{}' \+
Does anyone know which file I have to edit to change my file association settings manually ?
- Top
- Bottom
Comment
-
Originally posted by allaf View PostDoes anyone know which file I have to edit to change my file association settings manually ?
EDIT: Actually, it seems mimeapps.list could also be in ~/.config/ and ~/.local/share/ location is deprecated (which could be part of the problem) [https://wiki.archlinux.org/index.php...t_applications]
Do you have mimeapps.list in either location and do they change when you edit file associations in kde?Last edited by kubicle; Jan 27, 2016, 11:28 PM.
- Top
- Bottom
Comment
-
Originally posted by kubicle View PostI think user settings for file associations are stored in ~/.local/share/applications/mimeapps.list (or ~/.config/mimeapps.list, see EDIT), but rather than editing that file I'd probably try to use the command xdg-mime (see 'man xdg-mime' for details) to set a file association to see if that works (and if it doesn't, there might be a relevant error message that might point to the problem).
EDIT: Actually, it seems mimeapps.list could also be in ~/.config/ and ~/.local/share/ location is deprecated (which could be part of the problem) [https://wiki.archlinux.org/index.php...t_applications]
Do you have mimeapps.list in either location and do they change when you edit file associations in kde?
I had 3 different locations !
/home/user/.config/mimeapps.list
/home/user/.kde/share/config/mimeapps.list
/home/user/.local/share/applications/mimeapps.list
I manually deleted the bad entry in /home/user/.config/mimeapps.list and /home/user/.kde/share/config/mimeapps.list and I fixed it.
Thanks a lot !
- Top
- Bottom
Comment
Comment