| Author |
Message |
GustavoYz

Joined: 07 Jul 2010 Posts: 867 Location: .ar
|
Posted: Wed 08 Feb 2012, 22:13 Post subject:
Urxvt - Colors Subject description: Resources to make urxvt prettier. |
|
Just feel the need of post this.
Take a look to this colors and their names, as urxvt recognize all that i've tested:
http://www.htmlgoodies.com/tutorials/colors/article.php/3478921
Handy link for CLI-EyeCandy.
| Description |
|
| Filesize |
22.14 KB |
| Viewed |
1013 Time(s) |

|
_________________

Last edited by GustavoYz on Tue 09 Oct 2012, 12:08; edited 1 time in total
|
|
Back to top
|
|
 |
musher0

Joined: 04 Jan 2009 Posts: 2219 Location: Gatineau (Qc), Canada
|
Posted: Wed 08 Feb 2012, 22:45 Post subject:
|
|
Thanks.
_________________
"To err is human; to really foul things up, you need a computer!" / "L'erreur est humaine; pour vraiment f... la m..., il faut un ordinateur." (Carleton University, banderole à la Rentrée 1979 / banner, start of 1979 school year) 
|
|
Back to top
|
|
 |
GustavoYz

Joined: 07 Jul 2010 Posts: 867 Location: .ar
|
Posted: Thu 16 Feb 2012, 11:41 Post subject:
|
|
Were reading about prompt colors, found this handy script:
| Code: | #!/bin/bash
#
# This file echoes a bunch of color codes to the
# terminal to demonstrate what's available. Each
# line is the color code of one forground color,
# out of 17 (default + 16 escapes), followed by a
# test use of that color on all nine background
# colors (default + 8 escapes).
#
T='gYw' # The test text
echo -e "\n 40m 41m 42m 43m\
44m 45m 46m 47m";
for FGs in ' m' ' 1m' ' 30m' '1;30m' ' 31m' '1;31m' ' 32m' \
'1;32m' ' 33m' '1;33m' ' 34m' '1;34m' ' 35m' '1;35m' \
' 36m' '1;36m' ' 37m' '1;37m';
do FG=${FGs// /}
echo -en " $FGs \033[$FG $T "
for BG in 40m 41m 42m 43m 44m 45m 46m 47m;
do echo -en "$EINS \033[$FG\033[$BG $T \033[0m";
done
echo;
done
echo |
| Description |
|
| Filesize |
40.52 KB |
| Viewed |
974 Time(s) |

|
_________________

|
|
Back to top
|
|
 |
GustavoYz

Joined: 07 Jul 2010 Posts: 867 Location: .ar
|
Posted: Fri 28 Sep 2012, 16:31 Post subject:
Img |
|
Also, is possible to combine a picture as tint pixmap on urxvt. I like to use texture pattern ones (check the cap below).
To do something likely, will need this extra argument:
| Code: | | urxv -pixmap "/path/to/file.png;:style=tiled" |
I use to add it at the end, not sure if is correct, but it works just fine:
| Code: | | urxvt -sr +st -tr -tint chocolate -sh 51 -cr green -bg black -fg moccasin -pixmap "/path/to/file.png;:style=tiled" |
There are plenty of pages with patterns to try, I got some from here. Have fun!
| Description |
Screen cap of an urxvt terminal. |
| Filesize |
26.23 KB |
| Viewed |
760 Time(s) |

|
_________________

Last edited by GustavoYz on Tue 27 Nov 2012, 12:55; edited 2 times in total
|
|
Back to top
|
|
 |
GustavoYz

Joined: 07 Jul 2010 Posts: 867 Location: .ar
|
Posted: Fri 05 Oct 2012, 12:44 Post subject:
Script |
|
I've made a silly script to exec an instance of urxvt with "random" settings on foreground and background colors, font and tint (transparency - opacity) level.
Check the screeny below, to see what im meaning with this.
Ill post a script modified to work without arguments, random setting only.
Replace the "FUENTES" array with font names that are on ur system and would like those on the console (check for those on mtpaint or gfontsel).
The original version of the script (with some more goodies that I use often) is here.
Regards.
| Description |
|

Download |
| Filename |
URXVT_RND.sh.tar.gz |
| Filesize |
1.26 KB |
| Downloaded |
318 Time(s) |
| Description |
|
| Filesize |
27.96 KB |
| Viewed |
847 Time(s) |

|
_________________

Last edited by GustavoYz on Tue 27 Nov 2012, 12:55; edited 1 time in total
|
|
Back to top
|
|
 |
GustavoYz

Joined: 07 Jul 2010 Posts: 867 Location: .ar
|
Posted: Sat 13 Oct 2012, 17:38 Post subject:
Console fonts Subject description: Some links |
|
Check this links, (p)review of some good fonts (download links too).
http://www.codinghorror.com/blog/2007/10/revisiting-programming-fonts.html
http://hivelogic.com/articles/top-10-programming-fonts/
(Inconsolata, Audimat Pro, Ubuntu mono and Lucida Console are my favorites for urxvt, in that order as screeny shows).
| Description |
|
| Filesize |
75.49 KB |
| Viewed |
789 Time(s) |

|
_________________

|
|
Back to top
|
|
 |
GustavoYz

Joined: 07 Jul 2010 Posts: 867 Location: .ar
|
Posted: Wed 24 Oct 2012, 16:50 Post subject:
|
|
On the spanish forum, somebody reported it may fail on Wary...
I dont use Wary, so if somebody does, please run this or me and post the output.
| Code: | | urxvt -h |& head -2 | tail -1 | sed 's/options\:\ //g' | perl -e 'print map { $_.="\n" } split(/,/, <>)' | column |
| Code: | #output on my case -->
perl pixbuf
xft XIM
styles frills
combining selectionscrolling
blink wheel
iso14755 slipwheel
unicode3 smart-resize
encodings=eu+vn+jp+jp-ext+kr+zh+zh-ext cursorBlink
fade pointerBlank
transparent scrollbars=plain+rxvt+NeXT+xterm
tint
|
Thanks.
_________________

|
|
Back to top
|
|
 |
KusaNoKaito

Joined: 19 Feb 2010 Posts: 98 Location: Florida
|
Posted: Wed 31 Oct 2012, 14:18 Post subject:
|
|
Very nice techniques, thanks for sharing. Will definitely play around with them this weekend.
_________________ Puppy Packages
My Website
|
|
Back to top
|
|
 |
GustavoYz

Joined: 07 Jul 2010 Posts: 867 Location: .ar
|
Posted: Wed 31 Oct 2012, 14:51 Post subject:
|
|
| KusaNoKaito wrote: | | Very nice techniques, thanks for sharing. Will definitely play around with them this weekend. |
Thanks.
_________________

|
|
Back to top
|
|
 |
GustavoYz

Joined: 07 Jul 2010 Posts: 867 Location: .ar
|
Posted: Mon 19 Nov 2012, 13:52 Post subject:
|
|
| GustavoYz wrote: | On the spanish forum, somebody reported it may fail on Wary...
I dont use Wary, so if somebody does, please run this or me and post the output.
| Code: | | urxvt -h |& head -2 | tail -1 | sed 's/options\:\ //g' | perl -e 'print map { $_.="\n" } split(/,/, <>)' | column |
| Code: | #output on my case -->
perl pixbuf
xft XIM
styles frills
combining selectionscrolling
blink wheel
iso14755 slipwheel
unicode3 smart-resize
encodings=eu+vn+jp+jp-ext+kr+zh+zh-ext cursorBlink
fade pointerBlank
transparent scrollbars=plain+rxvt+NeXT+xterm
tint
|
Thanks. |
False alarm, is working just fine apparently.
_________________

|
|
Back to top
|
|
 |
GustavoYz

Joined: 07 Jul 2010 Posts: 867 Location: .ar
|
Posted: Mon 19 Nov 2012, 15:18 Post subject:
|
|
Feel the need of post this here...
Change the font on the fly (either way):
| Code: | | printf '\33]50;%s\007' 9x15,xft:FontName |
| Code: | | printf '\33]50;%s\007' xft:"Font Name":pixelsize=10:size=9:hinting=true |
I'll quote this one, from `man 7 urxvt`:
| Quote: | I don't like the screen colours. How do I change them?
You can change the screen colours at run-time using ~/.Xdefaults resources (or as long-options).
[...]
And here is a more complete set of non-standard colours.
URxvt.cursorColor: #dc74d1
URxvt.pointerColor: #dc74d1
URxvt.background: #0e0e0e
URxvt.foreground: #4ad5e1
URxvt.color0: #000000
URxvt.color8: #8b8f93
URxvt.color1: #dc74d1
URxvt.color9: #dc74d1
URxvt.color2: #0eb8c7
URxvt.color10: #0eb8c7
URxvt.color3: #dfe37e
URxvt.color11: #dfe37e
URxvt.color5: #9e88f0
URxvt.color13: #9e88f0
URxvt.color6: #73f7ff
URxvt.color14: #73f7ff
URxvt.color7: #e1dddd
URxvt.color15: #e1dddd
|
I tested it and worked as a charm (overwrite the system colours, as other terminals does).
_________________

|
|
Back to top
|
|
 |
|