Summary: | x11-terms/rxvt-unicode feature request (disable underline and cursor behaviour) | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | ac.serbanescu |
Component: | Current packages | Assignee: | No maintainer - Look at https://wiki.gentoo.org/wiki/Project:Proxy_Maintainers if you want to take care of it <maintainer-needed> |
Status: | RESOLVED WONTFIX | ||
Severity: | enhancement | CC: | wired |
Priority: | Normal | Keywords: | NeedPatch |
Version: | unspecified | ||
Hardware: | All | ||
OS: | All | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- | |
Attachments: |
Patch to not draw the underline if underlined text is displayed in colour.
Don't draw underline if colorUL is set |
Description
ac.serbanescu
2011-08-31 17:17:48 UTC
Where is the patch? :) Do the resources colorUL, underlineColor help you at all? Created attachment 303343 [details, diff]
Patch to not draw the underline if underlined text is displayed in colour.
Created attachment 303405 [details, diff]
Don't draw underline if colorUL is set
This one is better. It still disables the underline cursor if colorUL is set, but it had poor visibility anyway.
(In reply to ac.serbanescu from comment #3) > Created attachment 303405 [details, diff] [details, diff] > Don't draw underline if colorUL is set > > This one is better. It still disables the underline cursor if colorUL is > set, but it had poor visibility anyway. Why dont you just do the following: Put patch to: /etc/portage/patches/x11-terms/rxvt-unicode/nameof.patch This step is only needed if rxvt-unicode ebuild doesnt call epatch_user() by default. Configure portage bashrc to call epatch_user() for all ebuilds: /etc/portage/bashrc post_src_unpack() { if type epatch_user &> /dev/null ; then if [[ -d ${S} ]]; then pushd "${S}" 2>/dev/null epatch_user popd 2>/dev/null else epatch_user fi fi } emerge rxvt-unicode (Apparently we had some `use vanilla && epatch_user' logic in there. I might even have put it there myself. I have changed the ebuild so that epatch_user is /always/ called and no one needs to work around USE=vanilla.) Closing due to years of inactivity. |