blob: 2ec8bfb1fa180234c0120927f50572617b57436e (
plain)
1
2
3
4
|
#!/bin/sh
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
|