Announcement

Collapse
No announcement yet.

can't use double click in kde

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    can't use double click in kde

    I cant' use the 'double click' setting in kde config.

    Didn't think such bugs were still possible, I think I'm giving up on kde, seriously.

    The video speaks for itself I believe :

    #2
    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.

    Comment


      #3
      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:

      1. Create a new user.
      2. Log in using the new user. Do you experience the same problem here as well?
      Try Me !

      Comment


        #4
        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.

        Comment


          #5
          Open a console and ensure you are in your users home directory. Then type:

          Code:
          sudo chown -R myuser:myuser *
          where myuser is your login username.

          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

          Comment


            #6
            Originally posted by Snowhog View Post
            Code:
            sudo chown -R myuser:myuser *
            Using globbing (*) is often ambiguous, and this one is a potential dotglob trap.

            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

            Comment


              #7
              Actually I have the exact same problem with file assiciation now.
              It works with a new user but not mine, but I don't know wich file to change.

              Comment


                #8
                Yeah, but I already did that. Didn't work

                Comment


                  #9
                  Originally posted by Teunis
                  I believe $HOME should be ~/ so:
                  Either is fine, you can literally use "$HOME" as well

                  Comment


                    #10
                    Originally posted by allaf View Post
                    Yeah, but I already did that. Didn't work
                    Then 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 '{}' \+
                    This command will list all files/folders in your $HOME that are not writable for your user (which may indicate a problem), you can post the output here if you can't decipher it yourself.

                    Comment


                      #11
                      Originally posted by kubicle View Post
                      Then 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 '{}' \+
                      This command will list all files/folders in your $HOME that are not writable for your user (which may indicate a problem), you can post the output here if you can't decipher it yourself.
                      No, nothing comes up expect unrelated files.

                      Does anyone know which file I have to edit to change my file association settings manually ?

                      Comment


                        #12
                        Originally posted by allaf View Post
                        Does anyone know which file I have to edit to change my file association settings manually ?
                        I 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?
                        Last edited by kubicle; Jan 27, 2016, 11:28 PM.

                        Comment


                          #13
                          Originally posted by kubicle View Post
                          I 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 !

                          Comment

                          Working...
                          X