Bug 108746

Summary: recognize rxvt-unicode
Product: Portland Reporter: Egon <epn>
Component: xdg-utilsAssignee: Portland Bugs <portland-bugs>
Status: RESOLVED MOVED QA Contact:
Severity: normal    
Priority: medium    
Version: unspecified   
Hardware: x86-64 (AMD64)   
OS: Linux (All)   
Whiteboard:
i915 platform: i915 features:

Description Egon 2018-11-14 20:18:41 UTC
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` ?
Comment 1 GitLab Migration User 2019-02-16 13:40:43 UTC
-- 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.