You are not logged in.

#51 2005-08-10 16:22:32

neri
Forum Fellow
From: Victoria, Canada
Registered: 2003-05-04
Posts: 553

Re: rxvt-unicode

Hi dibble,

my apologies, I focused on anew package and forgot to call the
post_install message on post_upgrade. Here is a fixed .install file.

Sorry for inconvenience.

-neri
moreover I gave the worng filename to the compiler, fixed in script beneath
rxvt.install

# arg 1:  the new package version
post_install() {
  echo -n "compiling terminfo file... "
  /usr/bin/tic /usr/share/terminfo/r/rxvt-unicode
  echo "done."
  cat << 'EOM'
  --> urxvt is a 88 color terminal, to achieve that you have to set your $TERM
  -->          export TERM=rxvt-unicode
  --> Some ncurses application and editors like are capable of diplaying more
  --> than 8 dark + 8 light(bolded) colors. To honour rxvt's capabilities you
  --> have to mess with the respective applications' configuration then.
EOM
}

post_upgrade() {
  post_install $1
}

op=$1
shift

$op $*
# vim: ft=sh

Offline

#52 2005-08-10 16:55:09

dtw
Forum Fellow
From: UK
Registered: 2004-08-03
Posts: 4,439
Website

Re: rxvt-unicode

LOL - I should have thought of that :oops:

Offline

#53 2005-08-10 17:56:54

ozar
Member
From: USA
Registered: 2005-02-18
Posts: 1,686

Re: rxvt-unicode

neri said:

Anybody else has some more issues? If not I'll put this to extra next week.
It has so many votes.

Cool... thanks for your work on this. Oh, and I did vote for it...   8)    smile


oz

Offline

#54 2005-08-13 04:00:47

ozar
Member
From: USA
Registered: 2005-02-18
Posts: 1,686

Re: rxvt-unicode

Still playing around with this and found that the following seems to allow rxvt-unicode to work properly if placed in .Xdefaults:

urxvt*termName: rxvt-color

edit:  hmm... maybe not, will report back later...


oz

Offline

#55 2005-08-15 16:32:12

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

Re: rxvt-unicode

neri: any word on this? I didn't update the community package because you were going to move it to extra...

Offline

#56 2005-08-15 16:49:37

UnWorldly
Member
Registered: 2005-07-25
Posts: 20

Re: rxvt-unicode

would love to know when I can use pacman to grab a problem-free version of this.

Your discussion has made me want to try it.

Offline

#57 2005-08-15 16:54:22

dtw
Forum Fellow
From: UK
Registered: 2004-08-03
Posts: 4,439
Website

Re: rxvt-unicode

there is one in my repo - click teh link below for instructions on how to access it

Offline

#58 2005-08-15 21:04:03

neri
Forum Fellow
From: Victoria, Canada
Registered: 2003-05-04
Posts: 553

Re: rxvt-unicode

phrakture wrote:

neri: any word on this? I didn't update the community package because you were going to move it to extra...

my turn now, I know, it will happen this week, promised.

ozar wrote:

Still playing around with this and found that the following seems to allow rxvt-unicode to work properly if placed in .Xdefaults:

urxvt*termName: rxvt-color

edit: hmm... maybe not, will report back later...

I played with putting it to $TERM and it worked as expected, also the things
I do in mlterm still worked nicely ecept mutt, this becomes completely b/w
sad
So I tried your approch by exporting either mlterm(i have an mlterm
terminfo, which will part if the next version) or xterm-color to $TERM and
URxvt*termName: rxvt-unicode to .Xdefault. This worked closely to the
way I expected it to work. All my terms work now with nice colors - urxvt
with even 88 colors.

just one thing is important, if TERM!=rxvt-unicode, vim doesn't set &t_Co
automatically to 88 and sticks with 8 instead! You guess it, that sucks. But
on condition $COLORTERM=rxvt-xpm, which is exported by urxvt
automatically, you can redifine set t_Co=88 and every thing is fine. Watch
the "vim in terminal" thread for more details.
http://bbs.archlinux.org/viewtopic.php?p=107851#107851

-neri

Offline

#59 2005-08-15 21:23:47

neri
Forum Fellow
From: Victoria, Canada
Registered: 2003-05-04
Posts: 553

Re: rxvt-unicode

Question:
urxvt is supposed to have other than - /me vomits - rxvt scrollbars. They
are even compiled but I never got one of them (plain,next,xterm) displayed :shock:

-neri

Offline

#60 2005-08-15 22:01:38

ozar
Member
From: USA
Registered: 2005-02-18
Posts: 1,686

Re: rxvt-unicode

neri wrote:

Question:
urxvt is supposed to have other than - /me vomits - rxvt scrollbars. They
are even compiled but I never got one of them (plain,next,xterm) displayed :shock:

-neri

All the different scrollbars worked for me through .Xdefaults:

urxvt*scrollBar:true
urxvt*scrollstyle:plain
urxvt*scrollBar_right:true

Just replace "plain" with the type you want. I like the plain because it's really minimal.


oz

Offline

#61 2005-08-15 22:04:53

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

Re: rxvt-unicode

I think there's 2 man pages, too BTW - I'm not at my arch box, but I seem to recall .1 and .7 - so maybe it's in the other one...

Offline

#62 2005-08-15 22:15:56

neotuli
Lazy Developer
From: London, UK
Registered: 2004-07-06
Posts: 1,204
Website

Re: rxvt-unicode

Ok I've updated the one in community, it's mostly like the pkgbuild here with the exception of that menus section and some post_install echo is a bit different.

Neri will be taking over and it should appear in [extra] when he has time.


The suggestion box only accepts patches.

Offline

#63 2005-08-15 23:47:08

neri
Forum Fellow
From: Victoria, Canada
Registered: 2003-05-04
Posts: 553

Re: rxvt-unicode

Note to self:
urxvt*scrollSytle != urxvt*scrollStyle
just to find out that it desn't work either.
but "scrollstyle" is case sensitive while Urxvt* isn't ... yuck

-neri
anyway thanks,  copy and paste did the trick

Offline

#64 2005-08-16 19:13:07

neri
Forum Fellow
From: Victoria, Canada
Registered: 2003-05-04
Posts: 553

Re: rxvt-unicode

As I'm writing that, urxvt has been moved. Just wanted to say thanks to all
contributers and that I like this way of moving an application from
aur->extra. It improves packages, it makes all people learning a bit and
finally it's just fun. It's not like rushing in stuff but maturing down things.

-neri

Offline

#65 2005-08-16 19:31:11

ozar
Member
From: USA
Registered: 2005-02-18
Posts: 1,686

Re: rxvt-unicode

Thanks, neri... it seems to be working fine so far.  Will report back here with any problems.   8)


oz

Offline

#66 2005-08-16 21:01:48

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

Re: rxvt-unicode

neri wrote:

As I'm writing that, urxvt has been moved. Just wanted to say thanks to all
contributers and that I like this way of moving an application from
aur->extra. It improves packages, it makes all people learning a bit and
finally it's just fun. It's not like rushing in stuff but maturing down things.

-neri

I agree - now... I wonder if there's anything actually in place to remove the package from the AUR... heh

Offline

#67 2005-08-18 20:51:13

neri
Forum Fellow
From: Victoria, Canada
Registered: 2003-05-04
Posts: 553

Re: rxvt-unicode

Dumb question ... but
Can anyone reproduce/report X crashes with urxvt when opening stuff containing non standard encodings such as spam im mutt. It stopps when I remove a couple of my fonts hmm

-neri

Offline

#68 2005-08-18 21:39:44

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

Offline

#69 2005-08-18 22:21:20

neri
Forum Fellow
From: Victoria, Canada
Registered: 2003-05-04
Posts: 553

Re: rxvt-unicode

pretty much exactly like that. I think I can track it down to some ttf fonts.
At least it happens when I have ttf-ms-fonts installed and some of my own
fonts. The Bitstream and Luxi fonts coming with X doesn't create the crash.

It might be either a misencoding in the fonts or some trouble in urxvt calling
freetype maybe.

  -neri
PS: phrakture, when you are on that ML, can you post it, I don't feel like
joining the 2876th ML tonight tongue, thanks

Offline

#70 2005-08-19 23:38:51

neri
Forum Fellow
From: Victoria, Canada
Registered: 2003-05-04
Posts: 553

Re: rxvt-unicode

Hi,

show me yours I show you mine tongue
I hacked a stupid!(could someone please eliminate that second loop and
combine the functionality in the first one) script to check the 88 colors that
can be shown in urxvt.
http://www.justdreams.de/archlinux/down … rstest.vim
what does it looks like here?
vim88test8rt.th.jpg
...featuring this http://www.justdreams.de/archlinux/downloads/Xdefaults .Xdefaults
I figure the that the dark colors (1-8) can only be displayed normal. The
moment you force the bold, they are shown in the 9-16 range :shock:

I read somewhere in the manpage or elswhere that the colors >16 can be
manipulated by some printf '33];code;%s07' magic, yet I dunno the
code numbers. Anyone?

-neri

Offline

Board footer

Powered by FluxBB