Bug 108746 - recognize rxvt-unicode
Summary: recognize rxvt-unicode
Status: RESOLVED MOVED
Alias: None
Product: Portland
Classification: Unclassified
Component: xdg-utils (show other bugs)
Version: unspecified
Hardware: x86-64 (AMD64) Linux (All)
: medium normal
Assignee: Portland Bugs
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-11-14 20:18 UTC by Egon
Modified: 2019-02-16 13:40 UTC (History)
0 users

See Also:
i915 platform:
i915 features:


Attachments

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.