unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
From: "Hamzeh Nasajpour" <h.nasajpour@pantherx.org>
To: 51058@debbugs.gnu.org
Subject: bug#51058: xdg-open wrong path in qt based applications (links wont be open)
Date: Tue, 19 Oct 2021 12:27:42 +0330	[thread overview]
Message-ID: <616779b9-6bf5-41eb-a295-38d1351dc9b2@www.fastmail.com> (raw)
In-Reply-To: <09d65e67-6927-42fb-97c9-0f76134fad0c@www.fastmail.com>

You can replicate the issue with this minimal operating system configuration:

```
(use-modules  (gnu) 
              (gnu system nss) 
              (gnu packages kde-plasma))

(use-service-modules desktop networking ssh sddm dbus)

(use-package-modules ssh certs tls lxqt xorg)

(operating-system  
  (host-name "panther")  
  (timezone "Asia/Tehran")  
  (locale "en_US.utf8")
  ;; Boot in "legacy" BIOS mode  
  (bootloader 
    (bootloader-configuration                
    (bootloader grub-bootloader)                
    (target "/dev/sda"))) 

(file-systems 
  (cons 
    (file-system                        
      (device (file-system-label "my-root"))
    (mount-point "/")
    (type "ext4"))
    %base-file-systems))

(users 
  (cons 
    (user-account                
    (name "user")                
    (password "1234")                
    (group "users")                
    (supplementary-groups '("wheel" "audio" "video"))                
    (home-directory "/home/user"))            
  %base-user-accounts))
  
(packages 
  (cons* 
    openssh 
    nss-certs 
    gnutls                    
    lxqt 
    lxqt-globalkeys                                      
  %base-packages))  
  
(services 
  (cons*	      
    (sddm-service		    
      (sddm-configuration		      
        (minimum-uid 1000)		      
        (theme "elarun")))      
    (elogind-service)  
    (udisks-service)	      
    (dbus-service)	      
 
    (service polkit-service-type)	      
    (service upower-service-type)	      
    (service dhcp-client-service-type)	      
    ;; network configuration	      
    (service openssh-service-type		       
      (openssh-configuration			 
        (port-number 22)			 
        (permit-root-login #t)			 
        (authorized-keys 
        `(("user" ,(local-file "/etc/vagrant.pub"))     
          ("root" ,(local-file "/etc/vagrant.pub"))))))
    (service wpa-supplicant-service-type)	     
    %base-services)) 

;; Allow resolution of '.local' host names with mDNS.  
(name-service-switch %mdns-host-lookup-nss))
```

1. Now, please login and add `Directory Menu` widget to `lxqt-panel`. 
2. Click on `Directory Menu`, click on somewhere to open a folder.
3. You can't open none of them via `Directory Menu`.

Any idea?

--

Hamzeh Nasajpour
PantherX Team




      parent reply	other threads:[~2021-10-19  8:59 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-06 11:50 bug#51058: xdg-open wrong path in qt based applications (links wont be open) Hamzeh Nasajpour
2021-10-07 10:34 ` bug#51058: Some new details Hamzeh Nasajpour
2021-10-19  8:57 ` Hamzeh Nasajpour [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=616779b9-6bf5-41eb-a295-38d1351dc9b2@www.fastmail.com \
    --to=h.nasajpour@pantherx.org \
    --cc=51058@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).