Package Details: rxvt-unicode-truecolor-wide-glyphs 9.31-9

Git Clone URL: https://aur.archlinux.org/rxvt-unicode-truecolor-wide-glyphs.git (read-only, click to copy)
Package Base: rxvt-unicode-truecolor-wide-glyphs
Description: Unicode enabled rxvt-clone terminal emulator (urxvt) with true color, enhanced glyphs and improved font rendering support
Upstream URL: http://software.schmorp.de/pkg/rxvt-unicode.html
Licenses: GPL-3.0-or-later
Conflicts: rxvt-unicode, rxvt-unicode-terminfo, urxvt-perls, urxvt-resize-font
Provides: rxvt-unicode, rxvt-unicode-terminfo, urxvt-keyboard-select, urxvt-resize-font
Submitter: mrdotx
Maintainer: mrdotx
Last Packager: mrdotx
Votes: 20
Popularity: 0.72
First Submitted: 2020-11-13 12:30 (UTC)
Last Updated: 2024-09-04 20:26 (UTC)

Dependencies (10)

Required by (31)

Sources (13)

Latest Comments

« First ‹ Previous 1 2 3 4 5 Next › Last »

aspirogrammer commented on 2023-04-15 01:21 (UTC) (edited on 2023-04-15 01:21 (UTC) by aspirogrammer)

Finally, a working urxvt with the patch applied, awesome package!

killozap commented on 2023-03-04 11:30 (UTC)

With the enable-wide-glyphs.patch, urxvt crashes with a segfault in some specific situations:

Mar 04 12:21:36 anarres systemd-coredump[83061]: [🡕] Process 83020 (urxvt) of user 1000 dumped core.

                                                 Stack trace of thread 83020:
                                                 #0  0x00005596c8165746 _ZN9rxvt_term11scr_refreshEv (ur>
                                                 #1  0x00005596c81661d9 _ZN9rxvt_term5flushEv (urxvt + 0>
                                                 #2  0x00005596c8180d84 ev_invoke_pending (urxvt + 0x48d>
                                                 #3  0x00005596c8182421 ev_run (urxvt + 0x4a421)
                                                 #4  0x00005596c816144d main (urxvt + 0x2944d)
                                                 #5  0x00007fbde8a3c790 n/a (libc.so.6 + 0x23790)
                                                 #6  0x00007fbde8a3c84a __libc_start_main (libc.so.6 + 0>
                                                 #7  0x00005596c8165f15 _start (urxvt + 0x2df15)
                                                 ELF object binary architecture: AMD x86-64

Disabling the patch -> no crashes. Any ideas?

MithicSpirit commented on 2023-01-15 02:00 (UTC)

This is failing to build for me due to rxvt-unicode-9.31.tar.bz2.signature having the incorrect checksum. Updating the checksums with updpkgsums fixes it.

mrdotx commented on 2023-01-09 11:26 (UTC)

Some window managers may have the problem that your prompt appears somewhere in the middle of the window. To mitigate the problem, change the geometry in your XResources config, e.g.:

URxvt.geometry: 80x-1

mrdotx commented on 2022-11-17 11:42 (UTC)

@Junker: Hi, 'patch' is included in 'base-devel', which is a requirement to use the AUR. For more information, see the wiki: https://wiki.archlinux.org/title/Arch_User_Repository#Getting_started

Junker commented on 2022-11-17 11:03 (UTC)

please add "patch" to makedepends

-> Extracting rxvt-unicode-9.30.tar.bz2 with bsdtar
==> Starting prepare()...
/home/junker/.cache/paru/clone/rxvt-unicode-truecolor-wide-glyphs/PKGBUILD: line 64: patch: command not found

mrdotx commented on 2022-06-13 16:19 (UTC)

@ferdig: Normally this should be fixed upstream, but this takes some time. I added your quick fix as a patch in version 9.30-5, for now. Thanks for your contribution...

ferdig commented on 2022-06-13 15:03 (UTC) (edited on 2022-06-13 15:04 (UTC) by ferdig)

@mrdotx I just ran into the same error. The error message just means that the perl module 'background' ran into a parse error, hence none of the perl extensions are working.

I just corrected this on my computer, and now the perl extensions seem to work fine. It's really just missing the quotes around urxvt::Color_fade:


--- /usr/lib/urxvt/perl/background.orig 2022-06-13 12:23:37.000000000 +0200
+++ /usr/lib/urxvt/perl/background  2022-06-13 16:55:56.203397416 +0200
@@ -988,7 +988,7 @@
          if FOCUS;

       my $fade   = @_ >= 1 ? $_[0] : defined $self->resource ("fade") ? $self->resource ("fade") * 0.01 : 0;
-      my $color  = @_ >= 2 ? $_[1] : $self->resource ("color+" . urxvt::Color_fade);
+      my $color  = @_ >= 2 ? $_[1] : $self->resource ("color+" . 'urxvt::Color_fade');

       $img = $img->tint ($color)         if $color ne "rgb:00/00/00";
       $img = $img->muladd (1 - $fade, 0) if $fade;

friday13 commented on 2022-04-23 01:54 (UTC)

Sorry @mrdotx, I checked after you said it. I think there is a background query in one of the plugins I use. My guess is it comes from this plugin https://github.com/regnarg/urxvt-config-reload

probably the same as my issue at https://github.com/regnarg/urxvt-config-reload/issues/11

I will try to revalue the package, thanks for the info.

sorry for giving wrong information

mrdotx commented on 2022-04-22 17:47 (UTC) (edited on 2022-04-22 17:48 (UTC) by mrdotx)

Sorry friday13, but this is a bad error description;) What are you trying to do? I think you are trying to set a background image, I guess?

By default this doesn't work with my PKGBUILD version. If you still want to do this, you need to customize the PKGBUILD before compiling:

Replace(enable) at least --disable-pixbuf by --enable-pixbuf

and because the error description says something about "fade" --disable-fading by --enable-fading

below the section build -> configure...