In /usr/bin/xdg-terminal, in the function`terminal_generic()`, there is the command ``` terminal_exec=`which $TERM 2>/dev/null` ``` However, for example when `$TERM = rxvt-unicode`, this does not start rxvt-unicode as its executable bears a different name, namely `urxvt` In fact, there is just below this line a check ``` elif [ x"$TERM" = x"urxvt" ] || [ x"$TERM" = x"rxvt-unicode" ] || [ x"$TERM" = x"rxvt" ]; then ``` for `rxvt-unicode`. Still, the executable is set to `rxvt-unicode`, the value of `$TERM` instead of `urxvt`. How about setting the executable instead to `urxvt` ?
-- GitLab Migration Automatic Message -- This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.freedesktop.org/xdg/xdg-utils/issues/138.
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.