For /usr/bin/xdg-open please do not overwrite environment variable DE if it is already set. (That would help us at Qubes OS with some issue. https://github.com/QubesOS/qubes-issues/issues/2065) I am suggesting a trivial change. Now: ``` detectDE if [ x"$DE" = x"" ]; then DE=generic fi ``` Suggested: ``` if [ x"$DE" = x"" ]; then detectDE fi if [ x"$DE" = x"" ]; then DE=generic fi ``` What do you think?
DE is deprecated and an internal implementation detail. If you insist, set/use the standardized XDG_CURRENT_DESKTOP variable instead.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.