diff options
author | Vasil Zlatanov <vasil.zlatanov@gmail.com> | 2015-01-28 18:05:14 +0100 |
---|---|---|
committer | Vasil Zlatanov <vasil.zlatanov@gmail.com> | 2015-01-28 18:05:14 +0100 |
commit | 17fc734d20035c84fc903f185dd10f85fdc489b3 (patch) | |
tree | 2c04869ede94a6c24e58172389487df8b86b4db4 /ratpoison/spotlight | |
parent | 4a30a002dab5f0b024b3713ecd10e53e0a0aa31f (diff) | |
download | dotfiles-17fc734d20035c84fc903f185dd10f85fdc489b3.tar.gz dotfiles-17fc734d20035c84fc903f185dd10f85fdc489b3.tar.bz2 dotfiles-17fc734d20035c84fc903f185dd10f85fdc489b3.zip |
new colorschemes
Diffstat (limited to 'ratpoison/spotlight')
-rwxr-xr-x | ratpoison/spotlight | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ratpoison/spotlight b/ratpoison/spotlight index bfe196e..2ec8bfb 100755 --- a/ratpoison/spotlight +++ b/ratpoison/spotlight @@ -1,3 +1,4 @@ #!/bin/sh -{ find ~/ \( ! -regex '.*/\..*' \); find ~/ \( -regex '.*/\..*' \) ; } | grep -v 'dotfiles/vim/undodir' | sed 's/ /\\ /g' | dmenu -i -l 20 -nb '#eee8d5' -nf '#657b83' | xargs urxvt -e rifle -p0 +source ~/.colors +find ~/ -not -path "~/Games/*" -not -path "~/.mozilla/*" -not -path "~/dotfiles/vim/undodir/*" | sed 's/ /\\ /g' | dmenu -i -l 20 -nb $COLOR11 -nf $COLOR0 | xargs urxvt -e rifle -p0 exit 0 |