Announcement
Collapse
No announcement yet.
can't use double click in kde
Collapse
This topic is closed.
X
X
-
-
I'm not able to open the video on this site nor in Youtube so I might be missing some info.
Yet, I can set the mouse in System Settings to Double Click and get the advertised results.
(and then quickly return to my favourite Single Click)
In other words, you have a localised problem...
- Top
- Bottom
-
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
Comment
-
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 obstruct 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
-
It'll be a file in your /home so that's why Snowhog gave the command:
Code:sudo chown -R myuser:myuser *
kubicle commented this wildcard that he calls 'globbing' can be ambiguous and suggests using:
Code:sudo chown -R myuser:myuser $HOME
sudo chown -R myuser:myuser ~/
- 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
Users Viewing This Topic
Collapse
There are 0 users viewing this topic.
Comment