You are not logged in.
@xero Yes! Can't wait to try it out.
Pack em in snow!
Offline
Uhh, when/where are you seeing these colors used in the terminal?
And how do you know what color applies to what element (e.g. what is URxvt.color9 being used for)?
Offline
engines, it's for people who use terminals like urxvt or xterm, which get their color information from ~/.Xresources. so that's where you have to put them. and make sure that ~/.xinitrc has a line "xrdb -merge ~/.Xresources" in it.
the convention is:
color0 black
color1 red
color2 green
color3 yellow
color4 blue
color5 magenta
color6 cyan
color7 white
...and the next 8 colors are the "bright" variants of those.
what the colors are used for is up to the application requesting it.
Last edited by ohnonot (2014-03-01 06:37:33)
Offline
Hey
I have no ~/.xinitrc, so I have to xrdb -merge ~/.Xresources after every edit. Should I create xinitrc?
what the colors are used for is up to the application requesting it.
How do you get all the programs in terminal to use it? I mean
Offline
Hey
I have no ~/.xinitrc, so I have to xrdb -merge ~/.Xresources after every edit. Should I create .xinitrc?
what the colors are used for is up to the application requesting it.
How do you get all the programs in terminal to use them? I mean in .bashrc there are three default aliases with color (ls, dir, vdir), is there a way to have e.g. lspci display devices and drivers in use in different colors? And the same with other cli programs? Is it something that must be set manually?
And one last question about rxvt: I am able to copy from outside into rxvt and from rxvt into rxvt. What I can't do is copy from rxvt to any other application. None of the methods work. Do you know of any way to fix this?
Thank you in advance, and I hope I'm not being too dense
Offline
yeah - you have to merge them every time, using it in .xinitrc just makes it start at boot, you don't need it in there, as long as it starts at boot somewhere.
not all the CLI commands have colour, up to the programmer.
bit pointless on some, but it does make it look pretty.
you might need to put this in your .Xres -
URxvt.perl-ext-common: default,matcher
thats just a guess.
Offline
not all the CLI commands have colour, up to the programmer.
bit pointless on some, but it does make it look pretty.
Yeah, I was thinking more about the commands that output lots of text
you might need to put this in your .Xres -
URxvt.perl-ext-common: default,matcher
Ok, when I do this I get
xrdb: "URxvt.perl-ext-common" on line 82 overrides entry on line 78
Offline
To look up what's on lines 78 and 82 would be the first step towards troubleshooting. Can you post your .Xdefaults, maybe?
Offline
It was really stupid.
Had "URxvt.perl-ext-common : default,matcher" and a few lines later "URxvt.perl-ext-common : tabbed"
HOWEVER that didn't really help. I still can't copy from urxvt.
Offline
as I said it's up to the programmer (who formats the output of commands with lots of text) to make it look pretty.
have a look here for your c/p prob.
Offline
I noticed I never replied back; so yeah I managed to fix my copy/paste problems.
In case any other laptop user comes by with this issue here is what I did:
- Create a file called "clipboard" in /usr/[lib | lib64]/urxvt/perl
sudo nano /usr/lib/urxvt/perl/clipboard
- Copy the following inside
#! perl -w
# Author: Bert Muennich
# Website: http://www.github.com/muennich/urxvt-perls
# Version: 2.0
# License: GPLv2
# Use keyboard shortcuts to copy the selection to the clipboard and to paste
# the clipboard contents (optionally escaping all special characters).
# Requires xsel to be installed!
# Usage: put the following lines in your .Xdefaults/.Xresources:
# URxvt.perl-ext-common: ...,clipboard
# URxvt.keysym.M-c: perl:clipboard:copy
# URxvt.keysym.M-v: perl:clipboard:paste
# URxvt.keysym.M-C-v: perl:clipboard:paste_escaped
# You can also overwrite the system commands to use for copying/pasting.
# The default ones are:
# URxvt.clipboard.copycmd: xsel -ib
# URxvt.clipboard.pastecmd: xsel -ob
# If you prefer xclip, then put these lines in your .Xdefaults/.Xresources:
# URxvt.clipboard.copycmd: xclip -i -selection clipboard
# URxvt.clipboard.pastecmd: xclip -o -selection clipboard
# On Mac OS X, put these lines in your .Xdefaults/.Xresources:
# URxvt.clipboard.copycmd: pbcopy
# URxvt.clipboard.pastecmd: pbpaste
# The use of the functions should be self-explanatory!
use strict;
sub on_start {
my ($self) = @_;
$self->{copy_cmd} = $self->x_resource('clipboard.copycmd') || 'xsel -ib';
$self->{paste_cmd} = $self->x_resource('clipboard.pastecmd') || 'xsel -ob';
()
}
sub copy {
my ($self) = @_;
if (open(CLIPBOARD, "| $self->{copy_cmd}")) {
my $sel = $self->selection();
utf8::encode($sel);
print CLIPBOARD $sel;
close(CLIPBOARD);
} else {
print STDERR "error running '$self->{copy_cmd}': $!\n";
}
()
}
sub paste {
my ($self) = @_;
my $str = `$self->{paste_cmd}`;
if ($? == 0) {
$self->tt_paste($str);
} else {
print STDERR "error running '$self->{paste_cmd}': $!\n";
}
()
}
sub paste_escaped {
my ($self) = @_;
my $str = `$self->{paste_cmd}`;
if ($? == 0) {
$str =~ s/([!#\$%&\*\(\) ='"\\\|\[\]`~,<>\?])/\\\1/g;
$self->tt_paste($str);
} else {
print STDERR "error running '$self->{paste_cmd}': $!\n";
}
()
}
sub on_user_command {
my ($self, $cmd) = @_;
if ($cmd eq "clipboard:copy") {
$self->copy;
} elsif ($cmd eq "clipboard:paste") {
$self->paste;
} elsif ($cmd eq "clipboard:paste_escaped") {
$self->paste_escaped;
}
()
}
and save.
- Put this in your .Xresources
URxvt.perl-ext-common: ...,clipboard
URxvt.keysym.C-c: perl:clipboard:copy
URxvt.keysym.C-v: perl:clipboard:paste
or whatever binds you prefer.
xrdb -merge that and you're done.
Thanks to WM for that arch forum link.
Offline
Because this is about .Xdefaults AND terminal color schemes, you get the whole .Xdefaults...
URxvt.cutchars: "'*,<>[]{}|-_@:/"
URxvt.font: xft:Hermit:style=Medium:size=9pt,\
9x15,\
-misc-fixed-medium-r-normal--15-140-75-75-c-90-iso10646-1,\
[codeset=JISX0208]xft:Kochi Gothic:antialias=false,\
-mplus-goth_p-medium-*-*-*-*-*-*-*-*-*-*-*
URxvt.font: -*-termsynu-medium-r-normal-*-14-*-*-*-*-*-iso10646-1,\
[codeset=JISX0208]xft:IPAexGothic:antialias=false
URxvt.boldFont: -*-termsynu-bold-r-normal-*-14-*-*-*-*-*-iso10646-1,\
[codeset=JISX0208]xft:IPAexGothic:style=bold:antialias=false
URxvt.italicFont: -xos4-terminus-bold-r-normal-*-17-*-*-*-*-*-*-*
URxvt.boldItalicFont: -xos4-terminus-bold-r-normal-*-17-*-*-*-*-*-*-*
URxvt.scrollBar: False
URxvt.jumpSchroll: True
URxvt.skipScroll: True
URxvt.secondaryScroll: True
URxvt.saveLines: 4096
URxvt.underlineColor: #cc0700
URxvt.perl-ext-common: default,matcher
URxvt.launcher: x-www-browser
URxvt.matcher.button: 1
URxvt.keysym.M-Up: cd ..\n
URxvt.keysym.M-z: command:\033]710;-*-termsynu-medium-r-normal-*-14-*-*-*-*-*-iso10646-1,\
[codeset=JISX0208]xft:IPAexGothic:antialias=false\007\
\033]711;-*-termsynu-bold-r-normal-*-14-*-*-*-*-*-iso10646-1,\
[codeset=JISX0208]xft:IPAexGothic:antialias=false:style=Bold\007
URxvt.keysym.M-u: command:\033]710;9x15,\
-misc-fixed-medium-r-normal--15-140-75-75-c-90-iso10646-1,\
[codeset=JISX0208]xft:Kochi Gothic,\
-mplus-goth_p-medium-*-*-*-*-*-*-*-*-*-*-*\007\
\033]711;9x15bold,\
-misc-fixed-bold-r-normal--15-140-75-75-c-90-iso10646-1,\
[codeset=JISX0208]xft:Kochi Gothic,\
-mplus-goth_p-bold-*-*-*-*-*-*-*-*-*-*-*\007
URxvt.keysym.M-h: command:\033]710;-*-tamsyn-medium-r-*-*-15-*-*-*-*-*-*-*,\
[codeset=JISX0208]xft:Kochi Gothic\007\
\033]711;-*-tamsyn-bold-r-*-*-15-*-*-*-*-*-*-*,\
[codeset=JISX0208]xft:Kochi Gothic\007
URxvt.keysym.M-g: command:\033]710;-*-tamsyn-medium-r-*-*-12-*-*-*-*-*-*-*,\
[codeset=JISX0208]xft:Kochi Gothic\007\
\033]711;-*-tamsyn-bold-r-*-*-12-*-*-*-*-*-*-*,\
[codeset=JISX0208]xft:Kochi Gothic\007
URxvt.keysym.M-k: command:\033]710;-*-tamsyn-medium-r-*-*-17-*-*-*-*-*-*-*,\
[codeset=JISX0208]xft:IPAexGothic:antialias=false,\
xft:DejaVu Sans Mono\007\
\033]711;-*-tamsyn-bold-r-*-*-17-*-*-*-*-*-*-*,\
[codeset=JISX0208]xft:IPAexGothic:style=Bold:antialias=false,\
xft:DejaVu Sans Mono:style=Bold\007
URxvt.keysym.M-i: command:\033]710;-misc-fixed-medium-r-normal-*-18-*-*-*-*-*-iso10646-1,\
[codeset=JISX0208]xft:Kochi Gothic,\
-mplus-goth_p-medium-*-*-*-*-*-*-*-*-*-*-*\007\
\033]711;-misc-fixed-bold-r-normal-*-18-*-*-*-*-*-iso10646-1,\
[codeset=JISX0208]xft:Kochi Gothic,\
-mplus-goth_p-bold-*-*-*-*-*-*-*-*-*-*-*\007
URxvt.keysym.M-j: command:\033]710;-*-profont-medium-r-*-*-22-*-*-*-*-*-*-1,\
[codeset=JISX0208]xft:IPAexGothic:antialias=false\007\
\033]711;-*-profont-medium-r-*-*-22-*-*-*-*-*-*-1,\
[codeset=JISX0208]xft:IPAexGothic:antialias=false:style=bold\007
URxvt.keysym.M-o: command:\033]710;xft:Kochi Gothic:size=20pt\007\
\033]711;xft:Kochi Gothic:style=bold\007
URxvt.keysym.M-p: command:\033]710;xft:EPSON 丸ゴシック体M:size=20\007\
\033]711;xft:EPSON 丸ゴシック体M:style=bold\007
Xft.autohint: 0
Xft.lcdfilter: lcddefault
Xft.antialias: 1
Xft.hinting: 1
Xft.hintstyle: hintfull
!Xft.dpi: 96
Xft.rgba: rgb
xosview.font: -xos4-terminus-medium-r-normal-*-12-*-*-*-*-*-*-*
xosview.captions: False
xosview.background: #1c1c1c
xosview.foreground: #4f4f4f
xosview.load: False
xosview.cpuGraph: True
xosview.cpuFreeColor: #1c1c1c
xosview.cpuUserColor: #d15517
xosview.cpuNiceColor: #36b217
xosview.cpuSystemColor: #ffea55
xosview.cpuInterruptColor: #93d1b2
UXTerm.font: -xos4-terminus-medium-r-normal-*-16-*-*-*-*-*-iso10646-*
UXTerm.font1: -mplus-goth_p-medium-*-*-*-17-*-*-*-*-*-*-*
UXTerm.wideFont: -mplus-goth_p-medium-*-*-*-17-*-*-*-*-*-*-*
UXTerm.boldFont: -xos4-terminus-bold-r-normal-*-16-*-*-*-*-*-iso10646-*
#define ct_c00 #121212
#define ct_c08 #666666
#define ct_c01 #d15517
#define ct_c09 #d11723
#define ct_c02 #36b217
#define ct_c10 #00d56a
#define ct_c03 #d1b217
#define ct_c11 #ffea55
#define ct_c04 #55aaff
#define ct_c12 #1793d1
#define ct_c05 #b217d1!
#define ct_c13 #d11793
#define ct_c06 #93d1b2
#define ct_c14 #17d1b2
#define ct_c07 #eeeeee
#define ct_c15 #ffffff
#define color00 ct_c00
#define color08 ct_c08
#define color01 ct_c01
#define color09 ct_c09
#define color02 ct_c02
#define color10 ct_c10
#define color03 ct_c03
#define color11 ct_c11
#define color04 ct_c04
#define color12 ct_c12
#define color05 ct_c05
#define color13 ct_c13
#define color06 ct_c06
#define color14 ct_c14
#define color07 ct_c07
#define color15 ct_c15
URxvt*background: ct_c00
URxvt*foreground: ct_c15
*cursorColor: ct_c03
*pointerColorBackground: ct_c07
*pointerColorForeground: ct_c00
!black
URxvt*color0: #333333
URxvt*color8: #444444
!red
URxvt*color1: #d45e68
URxvt*color9: #ED6975
!green
URxvt*color2: #a4d45e
URxvt*color10: #B8ED69
!yellow
URxvt*color3: #d4c95e
URxvt*color11: #EDE169
!blue
URxvt*color4: #5ea4d4
URxvt*color12: #69B8ED
!magenta
URxvt*color5: #d45ea4
URxvt*color13: #ED69B8
!cyan
URxvt*color6: #5ED4C9
URxvt*color14: #69EDE1
!white
URxvt*color7: #AAAAAA
URxvt*color15: #CCCCCC
XTerm*background: rgb:33/33/33
XTerm*foreground: rgb:ff/ff/ff
XTerm*color0: rgb:33/33/33
XTerm*color8: rgb:66/66/66
!red
XTerm*color1: rgb:A9/49/52
XTerm*color9: rgb:ED/69/75
!green
XTerm*color2: rgb:83/A9/49
XTerm*color10: rgb:B8/ED/69
!yellow
XTerm*color3: rgb:A9/9F/49
XTerm*color11: rgb:ED/E1/69
!blue
XTerm*color4: rgb:49/83/A9
XTerm*color12: rgb:69/B8/ED
!magenta
XTerm*color5: rgb:A9/49/83
XTerm*color13: rgb:ED/69/B8
!cyan
XTerm*color6: rgb:49/A9/9F
XTerm*color14: rgb:69/ED/E1
!white
XTerm*color7: rgb:AA/AA/AA
XTerm*color15: rgb:CC/CC/CC
xscreensaver.Dialog.headingFont: -*-termsynu-medium-r-normal-*-14-*-*-*-*-*-iso10646-1
xscreensaver.Dialog.bodyFont: -*-termsynu-medium-r-normal-*-14-*-*-*-*-*-iso10646-1
xscreensaver.Dialog.labelFont: -*-termsynu-medium-r-normal-*-14-*-*-*-*-*-iso10646-1
xscreensaver.Dialog.unameFont: -*-termsynu-medium-r-normal-*-14-*-*-*-*-*-iso10646-1
xscreensaver.Dialog.labelFont: -*-termsynu-medium-r-normal-*-14-*-*-*-*-*-iso10646-1
xscreensaver.Dialog.buttonFont: -*-termsynu-medium-r-normal-*-14-*-*-*-*-*-iso10646-1
xscreensaver.Dialog.dateFont: -*-termsynu-medium-r-normal-*-14-*-*-*-*-*-iso10646-1
xscreensaver.passwd.passwdFont: -*-termsynu-medium-r-normal-*-14-*-*-*-*-*-iso10646-1
!general dialog box (affects main hostname, username, password text)
xscreensaver.Dialog.foreground: #ffffff
xscreensaver.Dialog.background: #121212
xscreensaver.Dialog.topShadowColor: #121212
xscreensaver.Dialog.bottomShadowColor: #121212
xscreensaver.Dialog.Button.foreground: #666666
xscreensaver.Dialog.Button.background: #ffffff
!username/password input box and date text colour
xscreensaver.Dialog.text.foreground: #666666
xscreensaver.Dialog.text.background: #ffffff
xscreensaver.Dialog.internalBorderWidth:24
xscreensaver.Dialog.borderWidth: 0
xscreensaver.Dialog.shadowThickness: 2
!timeout bar (background is actually determined by Dialog.text.background)
xscreensaver.passwd.thermometer.foreground: #ff0000
xscreensaver.passwd.thermometer.background: #000000
xscreensaver.passwd.thermometer.width: 8
!datestamp format--see the strftime(3) manual page for details
xscreensaver.dateFormat: %I:%M%P %a %b %d, %Y
Offline
sxiv*geometry: 600x600
URxvt.font:xft:drift:size=9
URxvt.scrollBar: False
URxvt.scrollTtyOutput: False
URxvt.scrollTtyKeypress: True
URxvt.secondaryScroll: True
URxvt.saveLines: 8000
URxvt.geometry: 79x19
urxvt*background: #e0daac
urxvt*foreground: #856a2a
!!urxvt*foreground: #ffdcc4
urxvt*cursorColor: #93a1a1
urxvt*colorIT: #8c644c
urxvt*colorUL: #646a6dy
urxvt*colorBD: #746C48
!black dark/light
urxvt*color0: #50443b
urxvt*color8: #817267
!red dark/light
urxvt*color1: #8c644c
urxvt*color9: #9f7155
!green dark/light
urxvt*color2: #746C48
urxvt*color10: #8F8558
!yellow dark/light
urxvt*color3: #bfba92
urxvt*color11: #E0DAAC
!blue dark/light
urxvt*color4: #646a6d
urxvt*color12: #777E82
!magenta dark/light
!!urxvt*color5: #6d6871
!!urxvt*color13: #756f7b
urxvt*color5: #766782
urxvt*color13: #897796
!cyan dark/light
!!urxvt*color6: #3b484a
!!urxvt*color14: #444d4e
urxvt*color6: #4B5C5E
urxvt*color14: #556D70
!white dark/light
urxvt*color7: #504339
urxvt*color15: #9a875f
colours are based on erosion by crshd.
Offline
Not sure on how to get a better color scheme script. lemme know.
! Xresource file
URxvt*depth: 12
URxvt*geometry: 80x20
URxvt.borderColor: #739890
URxvt.internalBorder: 4
! -- scrollbar
URxvt.scrollstyle: plain
URxvt.scrollBar: false
URxvt.scrollTtyOutput: false
URxvt.scrollWidthBuffer: true
URxvt.scrollTtyKeypress: true
! -- login shell
URxvt.loginShell: false
! -- font
URxvt.font: xft:uushi:pixelsize=9
URxvt.boldFont:
! -- perl
URxvt.perl-ext-command: default,clipboard,vtwheel
URxvt.keysym.Mod4-v: perl:clipboard:paste
! -- colors
URxvt.background: #424242
URxvt.foreground: #739890
URxvt.colorBD: #CFCFCF
URxvt.colorUL: #A0A0A0
URxvt.colorIT: #686868
!BLK
URxvt.color0: #303030
URxvt.color8: #686868
!RED
URxvt.color9: #cfcfcf
URxvt.color1: #cfcfcf
!GRN
URxvt.color10: #A3D572
URxvt.color2: #6D9E3F
!BLU
URxvt.color12: #98CBFE
URxvt.color4: #6095C5
!YEL
URxvt.color11: #EFBD8B
URxvt.color3: #B58858
!CYN
URxvt.color14: #75DAA9
URxvt.color6: #3BA275
!MAG
URxvt.color13: #E5B0FF
URxvt.color5: #AC7BDE
!WHT
URxvt.color7: #CFCFCF
URxvt.color15: #FFFFFF
Offline
Solarized theme for rxvt
! --------------------------------------
! Solarized URxvt colors
! http://ethanschoonover.com/solarized
! $base03: #002b36;
! $base02: #073642;
! $base01: #586e75;
! $base00: #657b83;
! $base0: #839496;
! $base1: #93a1a1;
! $base2: #eee8d5;
! $base3: #fdf6e3;
! $yellow: #b58900;
! $orange: #cb4b16;
! $red: #dc322f;
! $magenta: #d33682;
! $violet: #6c71c4;
! $blue: #268bd2;
! $cyan: #2aa198;
! $green: #859900;
URxvt.background: #002b36
URxvt.foreground: #839496
URxvt.colorBD: #93a1a1
URxvt.cursorColor: #93a1a1
! URxvt.throughColor: #8080f0
URxvt.highlightColor: #eee8d5
! Black (not tango) + DarkGrey
*color0: #000000
*color8: #657b83
! DarkRed + Red
*color1: #dc322f
*color9: #dc322f
! DarkGreen + Green
*color2: #859900
*color10: #859900
! DarkYellow + Yellow
*color3: #b58900
*color11: #b58900
! DarkBlue + Blue
*color4: #268bd2
*color12: #268bd2
! DarkMagenta + Magenta
*color5: #d33682
*color13: #d33682
!DarkCyan + Cyan (both not tango)
*color6: #2aa198
*color14: #2aa198
! LightGrey + White
*color7: #eee8d5
*color15: #fdf6e3
! --------------------------------------
Offline
.Xdefaults:
URxvt.colorBD: #ffffff
URxvt.colorUL: #ffffff
URxvt.geometry: 100x30
URxvt.scrollBar: false
URxvt.cursorUnderline: true
URxvt.cursorBlink: true
URxvt.pointerBlank: true
URxvt.font: -*-terminus-medium-r-*-*-12-*-*-*-*-*-*-*
URxvt.saveLines: 65535
URxvt.utmpInhibit: true
URxvt.skipBuiltinGlyphs: true
!URxvt.perl-ext:
URxvt.perl-ext-common: default,matcher
URxvt.url-launcher: /usr/bin/firefox
URxvt.matcher.button: 1
! zenburn
! special
*.foreground: #bfbfbf
*.background: #000000
*.cursorColor: #00ff00
! black
*.color0: #000000
*.color8: #808080
! red
*.color1: #705050
*.color9: #dca3a3
! green
*.color2: #60b48a
*.color10: #c3bf9f
! yellow
*.color3: #dfaf8f
*.color11: #f0dfaf
! blue
*.color4: #506070
*.color12: #94bff3
! magenta
*.color5: #dc8cc3
*.color13: #ec93d3
! cyan
*.color6: #8cd0d3
*.color14: #93e0e3
! white
*.color7: #dcdccc
*.color15: #eeeeee
Offline
Update!
URxvt.colorBD: #ffffff
URxvt.colorUL: #ffffff
URxvt.geometry: 100x30
URxvt.cursorUnderline: true
URxvt.cursorBlink: true
URxvt.pointerBlank: true
URxvt.font: -*-terminus-medium-r-*-*-12-*-*-*-*-*-*-*
URxvt.saveLines: 65535
URxvt.utmpInhibit: true
URxvt.skipBuiltinGlyphs: true
URxvt.perl-ext-common: default,matcher
URxvt.url-launcher: /usr/bin/firefox
URxvt.matcher.button: 1
URxvt.scrollColor: #005577
URxvt.scrollstyle: plain
URxvt.thickness: 6
URxvt.scrollBar_right: true
URxvt.fading: 25
*.foreground: #bfbfbf
*.background: #000000
*.cursorColor: #00ff00
*.color0: #000000
*.color8: #808080
*.color1: #705050
*.color9: #dca3a3
*.color2: #60b48a
*.color10: #c3bf9f
*.color3: #dfaf8f
*.color11: #f0dfaf
*.color4: #506070
*.color12: #94bff3
*.color5: #dc8cc3
*.color13: #ec93d3
*.color6: #8cd0d3
*.color14: #93e0e3
*.color7: #dcdccc
*.color15: #eeeeee
Offline
! Colors by User 77
! Theme: Mashup Colors\
! terminal.sexy
! special
*.foreground: #b2a191
*.background: #171717
*.cursorColor: #b2a191
! black
*.color0: #202020
*.color8: #404040
! red
*.color1: #bf3f34
*.color9: #ff6c5f
! green
*.color2: #707d22
*.color10: #b8ca4b
yellow
*.color3: #bf7a29
*.color11: #c7a551
! blue
*.color4: #627a92
*.color12: #95b9de
! magenta
*.color5: #75507b
*.color13: #ad7fa8
! cyan
*.color6: #757978
*.color14: #9fa590
! white
*.color7: #b2a191
*.color15: #e8d0c3
!! Disappear the scrollbar
URxvt*scrollBar: false
!! Font
URxvt.font: xft:LiberationMono:size=11.5:antialias=true
URxvt.boldFont: xft:LiberationMono:bold:size=11.5:antialias=true
URxvt.letterSpace: 0
Nothing special here. I'll see if I can't find stuff to add in this thread!
I'm in love with the colorscheme (reflected in GTK and Fluxbox Style)
One thing that irks me though. Editing python in vim feels like it's missing something color-wise.
Offline
Editing python in vim feels like it's missing something color-wise.
Do you have:
syntax on
In ~/.vimrc?
See also: http://crunchbang.org/forums/viewtopic.php?id=29133
Offline
Yeah, syntax was on, but I was using some colorscheme other than default. Looking at that thread, I got
:colo default
...from your post. That fixed it. Actually, looking at '/usr/share/vim/vim74/colors/' shows that I got a couple to choose from. TIL
EDIT: Why, of all names, does peachpuff have to look the best? Looks like I got some customizing and renaming to do!
Last edited by smacz (2015-07-19 23:01:52)
Offline
This is my first attempt O:)
! --- ~/.Xresources ------------------------------------------------------------
! ------------------------------------------------------------------------------
! --- generated with 4bit Terminal Color Scheme Designer -----------------------
! ------------------------------------------------------------------------------
! --- http://ciembor.github.com/4bit -------------------------------------------
! ------------------------------------------------------------------------------
! --- AOI -------------------------------------------
! --- From Japanese 葵 "hollyhock, althea" or 碧 "blue" -------------------------
! --- Nili 2015 ----------------------------------------------------------------
! --- Feel free to use & modify ------------------------------------------------
! ------------------------------------------------------------------------------
! --- special colors ---
*background: #131113
*foreground: #e7e7e7
! --- standard colors ---
! black
*color0: #151515
! bright_black
*color8: #373737
! red
*color1: #515e6f
! bright_red
*color9: #bbc8d8
! green
*color2: #515e6f
! bright_green
*color10: #bbc8d8
! yellow
*color3: #515e6f
! bright_yellow
*color11: #bbc8d8
! blue
*color4: #515e6f
! bright_blue
*color12: #bbc8d8
! magenta
*color5: #515e6f
! bright_magenta
*color13: #bbc8d8
! cyan
*color6: #515e6f
! bright_cyan
*color14: #bbc8d8
! white
*color7: #808080
! bright_white
*color15: #e7e7e7
! --- other settings ---
*highlightColor: #3D4452
*highlightTextColor: #F2F2F2
*cursorColor: #e7e7e7
*pointerColor: #515e6f
*pointerColor2: #e7e7e7
*colorBD: #e7e7e7
*colorUL: #95A4B2
*underlineColor: #566776
! ------------------------------------------------------------------------------
! --- end of terminal colors section -------------------------------------------
! ------------------------------------------------------------------------------
Offline
^ Lovely!
Offline
Thanks
Offline
Copyright © 2012 CrunchBang Linux.
Proudly powered by Debian. Hosted by Linode.
Debian is a registered trademark of Software in the Public Interest, Inc.
Server: acrobat