Skip to content

Commit

Permalink
made it better for iterm
Browse files Browse the repository at this point in the history
  • Loading branch information
aziz committed Mar 10, 2011
1 parent b8e3044 commit ad320ca
Show file tree
Hide file tree
Showing 7 changed files with 99 additions and 11 deletions.
2 changes: 2 additions & 0 deletions TODO
@@ -1,3 +1,5 @@
vim has a bug in iterm2

rm2trash is broken for linux
https://github.com/nesono/nesono-bin/blob/master/bashtils/rm2trash.linux
https://github.com/nesono/nesono-bin/blob/master/bashtils/rm2trash.darwin
Expand Down
2 changes: 1 addition & 1 deletion bash
Submodule bash updated from eec95a to e9e02a
23 changes: 23 additions & 0 deletions bin/color
@@ -0,0 +1,23 @@
#! /usr/bin/env ruby

# Display the colors available in a terminal.
puts "16-color mode:"
(0..16).each do |color|
print "\033[38;5;%sm%s %03s\033[m" % [color.to_s, " ▉","#{color}"]
puts if color % 16 == 0
end
puts

#Programs like ls and vim use the first 16 colors of the 256-color palette.
puts "256-color mode:"
c = [[16,21],[52,57],[88,93],[124,129],[160,160],[196,201],[232,237]]
c.each do |a|
(a[0]..a[1]).each do |color|
0.upto(5) do |i|
print "\033[38;5;%sm%s %03s\033[m" % [(color+(i*6)).to_s, " ▉","#{(color+(i*6))%256}"]
end
puts

end
end
puts
63 changes: 63 additions & 0 deletions bin/color2
@@ -0,0 +1,63 @@
#!/usr/bin/perl
# Author: Todd Larason <jtl@molehill.org>
# $XFree86: xc/programs/xterm/vttests/256colors2.pl,v 1.2 2002/03/26 01:46:43 dickey Exp $

# use the resources for colors 0-15 - usually more-or-less a
# reproduction of the standard ANSI colors, but possibly more
# pleasing shades

# colors 16-231 are a 6x6x6 color cube
for ($red = 0; $red < 6; $red++) {
for ($green = 0; $green < 6; $green++) {
for ($blue = 0; $blue < 6; $blue++) {
printf("\x1b]4;%d;rgb:%2.2x/%2.2x/%2.2x\x1b\\",
16 + ($red * 36) + ($green * 6) + $blue,
($red ? ($red * 40 + 55) : 0),
($green ? ($green * 40 + 55) : 0),
($blue ? ($blue * 40 + 55) : 0));
}
}
}

# colors 232-255 are a grayscale ramp, intentionally leaving out
# black and white
for ($gray = 0; $gray < 24; $gray++) {
$level = ($gray * 10) + 8;
printf("\x1b]4;%d;rgb:%2.2x/%2.2x/%2.2x\x1b\\",
232 + $gray, $level, $level, $level);
}


# display the colors

# first the system ones:
print "System colors:\n";
for ($color = 0; $color < 8; $color++) {
print "\x1b[48;5;${color}m ";
}
print "\x1b[0m\n";
for ($color = 8; $color < 16; $color++) {
print "\x1b[48;5;${color}m ";
}
print "\x1b[0m\n\n";

# now the color cube
print "Color cube, 6x6x6:\n";
for ($green = 0; $green < 6; $green++) {
for ($red = 0; $red < 6; $red++) {
for ($blue = 0; $blue < 6; $blue++) {
$color = 16 + ($red * 36) + ($green * 6) + $blue;
print "\x1b[48;5;${color}m ";
}
print "\x1b[0m ";
}
print "\n";
}


# now the grayscale ramp
print "Grayscale ramp:\n";
for ($color = 232; $color < 256; $color++) {
print "\x1b[48;5;${color}m ";
}
print "\x1b[0m\n";
4 changes: 2 additions & 2 deletions cron/cron_jobs
Expand Up @@ -3,7 +3,7 @@ PATH=/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:~/.bin
# Update homebrew every 6 hours
0 */6 * * * date >> ~/.cron/logs/brew_update.log && brew update >> ~/.cron/logs/brew_update.log 2>&1

# Update boplots DB every 15 minues
1,16,31,46 * * * * cd /Users/allen/Dropbox/projects/boplots && /Users/allen/.rvm/gems/ruby-1.8.7-p330/bin/rails runner "r=Robot.new;r.get_flats" >> ~/.cron/logs/robot.log 2>&1
# Update boplots DB every 5 minues
1,6,11,16,21,26,31,36,41,46,51,56 * * * * /Users/allen/Dropbox/projects/boplots/lib/robot >> ~/.cron/logs/robot.log 2>&1


14 changes: 7 additions & 7 deletions tmux.conf
Expand Up @@ -41,22 +41,22 @@ bind-key C-i resize-pane -U 5

## set status bar
set-option -g status-utf8 on
set-option -g status-bg yellow
#set-option -g status-fg white
set-option -g status-bg colour11
set-option -g status-fg colour8

#set-option -g status-left '⣿'
#set-option -g status-right '⡇ #[bold]❐ #S:#I#[default] ⡇ #[bold]#(whoami) ● #H#[default] '
#set-option -g status-right '⡇ ❐ #S ⡇ ❖ #(rvm tools identifier) ⡇ #(whoami) ● #H '
set-option -g status-left ' #[bold]❐ #S#[default] ⡇'
set-option -g status-right '#[bold]#(whoami) ● #H#[default] '
set-option -g status-left ' #[bold]❐ #S#[default] ⡇'
set-option -g status-right '#[bold]#(whoami) ● #H#[default] '

set-option -g status-right-length 60
set-option -g status-left-length 60

## highlight active window
set-window-option -g window-status-current-bg red
set-window-option -g window-status-current-fg white
set-window-option -g window-status-current-attr bright
set-window-option -g window-status-current-bg colour166
set-window-option -g window-status-current-fg colour15
set-window-option -g window-status-current-attr bold
set-window-option -g window-status-current-format ' #I #W '

## set window notifications
Expand Down
2 changes: 1 addition & 1 deletion vimrc
Expand Up @@ -10,7 +10,7 @@ set tabstop=2
set shiftwidth=2
set softtabstop=2
set expandtab
set list listchars=tab:\ \ ,trail:·
"set list listchars=tab:\ \ ,trail:·


" Searching
Expand Down

0 comments on commit ad320ca

Please sign in to comment.