get feed

/home/ap0calypse

21 is only half the truth ...

dotfiles

.bashrc


# aliases

alias ls=´ls --color=auto´
alias ll=´ls -alias la=´ls -lA´
alias lh=´ls -lh´
alias dos2unix=´perl -pi~ -e "s/\r//g"´
alias osx2unix=´perl -pi~ -e "s/\r/\n/g"´
alias unix2dos=´perl -pi~ -e "s/\n/\r\n/g"´
alias cpan=´perl -MCPAN -e shell´
alias grep=´egrep --color=always´
alias netrestart=´sudo rc.d restart net-profiles´
 
BWHITE=´\[\033[1;39m\]´
WHITE=´\[\033[0;39m\]´
BGREEN=´\[\033[1;32m\]´
GREEN=´\[\033[0;32m\]´
BYELLOW=´\[\033[1;33m\]´
YELLOW=´\[\033[0;33m\]´
BRED=´\[\033[1;31m\]´
RED=´\[\033[0;31m\]´
BBLUE=´\[\033[1;34m\]´
BLUE=´\[\033[0;34m\]´
NORMAL=´\[\033[00m\]´
  
PS_PART1="$BWHITE[$BGREEN\t$BWHITE] $BRED\w$BWHITE "
PS_PART2=´\$ ´
PS_PART3="$NORMAL"
PS1=$PS_PART1$PS_PART2$PS_PART3
if [ "$TERM" == "xterm" ]; then
    PROMPT_COMMAND=´echo -ne "\033]2;$(hostname) - $PWD\007"´
fi
export HISTTIMEFORMAT="%F %T "
export PS1

.Xdefaults


Xft*dpi: 96
Xft*antialias: true
Xft*hinting: true
Xft*hintstyle: hintfull
Xft*rgba: rgb

!------------------!
! URvxt Stuff !
!------------------!

!--[term name]--!
URxvt*termName: rxvt-unicode

!--[trans and fg/bg]--!
URxvt*depth:24
URxvt*background: #000000
URxvt*foreground: #C7C7C7
URxvt*borderless: 1

URxvt*transparent: true
URxvt*shading:      40
URxvt*geometry: 95x15


!--[font]--!
URxvt*font: xft:Dina:size=12
!--[scrolling]--!
URxvt*scrollBar: false
URxvt*saveLines: 10000

!--[perl]--!
URxvt*perl-ext-common: default

!--[bell]--!
URxvt*urgentOnBell: true

!--[cursor]--!
URxvt*cursorBlink: false

!--[Colours]--!
URxvt*cursorColor: #FFAF00

! black
URxvt*color0: #000000
URxvt*color8: #999999

! red
URxvt*color1: #BD484A
URxvt*color9: #F55D60

! green
URxvt*color2: #66994E
URxvt*color10: #93DB6F

! yellow
URxvt*color3: #C4A043
URxvt*color11: #F0C452

! blue
URxvt*color4: #567B94
URxvt*color12: #7CB2D6

! magenta
URxvt*color5: #BB88DD
URxvt*color13: #D7AFD7

! cyan
URxvt*color6: #00BBDD
URxvt*color14: #0DEBFF

! white
URxvt*color7: #C7C7C7
URxvt*color15: #D9D9D9

.vimrc

set nocompatible
autocmd!
syntax on
set mouse=c
set nomousehide
set ruler
set number
set showcmd
set linebreak
set scrolloff=4
set noerrorbells visualbell t_vb= " no beeps of any kind
set winminheight=0
set splitbelow
set backupdir=~/.vim/backup/
set confirm
set history=2000 " 100x the default
set incsearch
set autoindent
set smartindent
set textwidth=0
set tabstop=4
set shiftwidth=4
set shiftround
set matchpairs+=<:>
set softtabstop=4
set isfname+=/,.
set backspace=2 " indent,eol,start
set nojoinspaces
set expandtab
map <xCSI>[62~ <MouseDown>
map! <xCSI>[62~ <MouseDown>
map <xCSI>[63~ <MouseUp>
map! <xCSI>[63~ <MouseUp>
map <xCSI>[64~ <S-MouseDown>
map! <xCSI>[64~ <S-MouseDown>
map <xCSI>[65~ <S-MouseUp>
map! <xCSI>[65~ <S-MouseUp>
map <C-N> <C-W><C-W><C-W>_
map <C-J> <C-W>j<C-W>_
map <C-K> <C-W>k<C-W>_
ab perlheader #!/usr/bin/perl<Enter>use strict;<Enter>use warnings;<Enter>

.conkyrc (netbook)

alignment bottom_left
background no
border_width 1
cpu_avg_samples 2
own_window_transparent yes
default_color white
default_outline_color white
default_shade_color white
draw_borders no
draw_graph_borders yes
draw_outline no 
draw_shades no
use_xft yes
xftfont Dina:size=10
gap_x 1 
gap_y 0
double_buffer yes
minimum_size 30 0
net_avg_samples 2
no_buffers yes
out_to_console no
out_to_stderr no
extra_newline no
own_window no
own_window_class Conky
own_window_type desktop
stippled_borders 0
update_interval 1.0
uppercase no
use_spacer none
show_graph_scale no
show_graph_range no

TEXT
$nodename - $sysname $kernel ${color 00ff00}»$color proc: $processes / $running_processes \
${color 00ff00}»$color mem: $memperc % ${color 00ff00}»$color \
fs: / ${fs_used_perc /}% /home ${fs_used_perc /home}% /usr ${fs_used_perc /usr}% \
/share ${fs_used_perc /share}% ${color 00ff00}»$color $battery_short
posted by ap0calypse on 2012-01-12 16:15