From 7284a165875af771d0fc7ea40f58d50d2807b029 Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Fri, 15 Mar 2013 14:57:03 +0900 Subject: [PATCH 1/6] fix twitter search --- _keysnail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_keysnail.js b/_keysnail.js index d32b972..464f298 100644 --- a/_keysnail.js +++ b/_keysnail.js @@ -39,7 +39,7 @@ style.register( //not work plugins.options["search-url-list"] = [ ["bing","http://bing.com/search?q=%q"], ["yatwitter search","http://yats-data.com/yats/search?query=%q"], - ["twitter search","http://search.twitter.com/search?q=%q&lang=all"], + ["twitter search","http://twitter.com/search?q=%q&lang=all"], ["tospy", "http://topsy.com/s?allow_lang=ja&q=%q"], ["2ch","http://2ch-ranking.net/search.php?q=%q&imp=and&order=time"], ["I\'m feelig lucky!","http://www.google.co.jp/search?q=%q&btnI=kudos"], From ef85a893fb61f5054788dba1256cc2670002f6ba Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Mon, 18 Mar 2013 02:05:51 +0900 Subject: [PATCH 2/6] untabify and fix indent --- bashrc | 60 +++++++++++++++++++++++++++++----------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/bashrc b/bashrc index ebe789d..2666cd2 100755 --- a/bashrc +++ b/bashrc @@ -261,7 +261,7 @@ if null type _git then # enable programmable completion for g complete -o bashdefault -o default -o nospace -F _git g 2>/dev/null \ - || complete -o default -o nospace -F _git g + || complete -o default -o nospace -F _git g fi alias setup.py="sudo python3 setup.py install --record files.txt" @@ -282,15 +282,15 @@ clk(){ } man(){ - env \ - LESS_TERMCAP_mb=$(printf "\e[1;35m") \ - LESS_TERMCAP_md=$(printf "\e[1;31m") \ - LESS_TERMCAP_me=$(printf "\e[0m") \ - LESS_TERMCAP_se=$(printf "\e[0m") \ - LESS_TERMCAP_so=$(printf "\e[1;44;33m") \ - LESS_TERMCAP_ue=$(printf "\e[0m") \ - LESS_TERMCAP_us=$(printf "\e[1;32m") \ - man "$@" + env \ + LESS_TERMCAP_mb=$(printf "\e[1;35m") \ + LESS_TERMCAP_md=$(printf "\e[1;31m") \ + LESS_TERMCAP_me=$(printf "\e[0m") \ + LESS_TERMCAP_se=$(printf "\e[0m") \ + LESS_TERMCAP_so=$(printf "\e[1;44;33m") \ + LESS_TERMCAP_ue=$(printf "\e[0m") \ + LESS_TERMCAP_us=$(printf "\e[1;32m") \ + man "$@" } scr(){ @@ -714,7 +714,7 @@ __my_ps1_moc(){ } for f in /usr/share/git/git-prompt.sh \ - /opt/local/share/doc/git-core/contrib/completion/git-prompt.sh + /opt/local/share/doc/git-core/contrib/completion/git-prompt.sh do test -r $f && . $f && break done @@ -791,35 +791,35 @@ __my_set_screen_title(){ __my_set_title(){ case $TERM in (rxvt*|xterm*|aterm|screen*) - title="$(echo $@)" - test -t 1 && - test -n "$DISPLAY" && - test -z "$EMACS" && - echo -n -e "\033]0;${title}\007" - ;; + title="$(echo $@)" + test -t 1 && + test -n "$DISPLAY" && + test -z "$EMACS" && + echo -n -e "\033]0;${title}\007" + ;; esac -} -PROMPT_COMMAND="__my_set_title \${USER}@\${HOSTNAME}\:\${PWD}; + } + PROMPT_COMMAND="__my_set_title \${USER}@\${HOSTNAME}\:\${PWD}; __my_set_screen_title \$(basename \"\$PWD\")/" # copied from https://wiki.archlinux.org/index.php/X_resources -invader(){ + invader(){ # ANSI color scheme script featuring Space Invaders # # Original: http://crunchbanglinux.org/forums/post/126921/#p126921 # Modified by lolilolicon # - f=3 b=4 - for j in f b; do - for i in {0..7}; do - printf -v $j$i %b "\e[${!j}${i}m" - done - done - bld=$'\e[1m' - rst=$'\e[0m' + f=3 b=4 + for j in f b; do + for i in {0..7}; do + printf -v $j$i %b "\e[${!j}${i}m" + done + done + bld=$'\e[1m' + rst=$'\e[0m' - cat << EOF + cat << EOF $f1 ▀▄ ▄▀ $f2 ▄▄▄████▄▄▄ $f3 ▄██▄ $f4 ▀▄ ▄▀ $f5 ▄▄▄████▄▄▄ $f6 ▄██▄ $rst $f1 ▄█▀███▀█▄ $f2███▀▀██▀▀███ $f3▄█▀██▀█▄ $f4 ▄█▀███▀█▄ $f5███▀▀██▀▀███ $f6▄█▀██▀█▄$rst @@ -841,5 +841,5 @@ invader(){ $f7▀▀▀▀▀▀▀▀▀▀▀$rst EOF -} + } #/etc/lsb-release From 5503ee3370de4560de581d8f0cba4633e47ae08e Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Mon, 18 Mar 2013 02:09:15 +0900 Subject: [PATCH 3/6] remove func invader --- bashrc | 41 ----------------------------------------- 1 file changed, 41 deletions(-) diff --git a/bashrc b/bashrc index 2666cd2..98f9dde 100755 --- a/bashrc +++ b/bashrc @@ -802,44 +802,3 @@ __my_set_title(){ PROMPT_COMMAND="__my_set_title \${USER}@\${HOSTNAME}\:\${PWD}; __my_set_screen_title \$(basename \"\$PWD\")/" -# copied from https://wiki.archlinux.org/index.php/X_resources - invader(){ - # ANSI color scheme script featuring Space Invaders - # - # Original: http://crunchbanglinux.org/forums/post/126921/#p126921 - # Modified by lolilolicon - # - - f=3 b=4 - for j in f b; do - for i in {0..7}; do - printf -v $j$i %b "\e[${!j}${i}m" - done - done - bld=$'\e[1m' - rst=$'\e[0m' - - cat << EOF - - $f1 ▀▄ ▄▀ $f2 ▄▄▄████▄▄▄ $f3 ▄██▄ $f4 ▀▄ ▄▀ $f5 ▄▄▄████▄▄▄ $f6 ▄██▄ $rst - $f1 ▄█▀███▀█▄ $f2███▀▀██▀▀███ $f3▄█▀██▀█▄ $f4 ▄█▀███▀█▄ $f5███▀▀██▀▀███ $f6▄█▀██▀█▄$rst - $f1█▀███████▀█ $f2▀▀███▀▀███▀▀ $f3▀█▀██▀█▀ $f4█▀███████▀█ $f5▀▀███▀▀███▀▀ $f6▀█▀██▀█▀$rst - $f1▀ ▀▄▄ ▄▄▀ ▀ $f2 ▀█▄ ▀▀ ▄█▀ $f3▀▄ ▄▀ $f4▀ ▀▄▄ ▄▄▀ ▀ $f5 ▀█▄ ▀▀ ▄█▀ $f6▀▄ ▄▀$rst - - $bld$f1▄ ▀▄ ▄▀ ▄ $f2 ▄▄▄████▄▄▄ $f3 ▄██▄ $f4▄ ▀▄ ▄▀ ▄ $f5 ▄▄▄████▄▄▄ $f6 ▄██▄ $rst - $bld$f1█▄█▀███▀█▄█ $f2███▀▀██▀▀███ $f3▄█▀██▀█▄ $f4█▄█▀███▀█▄█ $f5███▀▀██▀▀███ $f6▄█▀██▀█▄$rst - $bld$f1▀█████████▀ $f2▀▀▀██▀▀██▀▀▀ $f3▀▀█▀▀█▀▀ $f4▀█████████▀ $f5▀▀▀██▀▀██▀▀▀ $f6▀▀█▀▀█▀▀$rst - $bld$f1 ▄▀ ▀▄ $f2▄▄▀▀ ▀▀ ▀▀▄▄ $f3▄▀▄▀▀▄▀▄ $f4 ▄▀ ▀▄ $f5▄▄▀▀ ▀▀ ▀▀▄▄ $f6▄▀▄▀▀▄▀▄$rst - - - $f7▌$rst - - $f7▌$rst - - $f7 ▄█▄ $rst - $f7▄█████████▄$rst - $f7▀▀▀▀▀▀▀▀▀▀▀$rst - -EOF - } -#/etc/lsb-release From 7da46f2cbd9d7d563da02144881fc5c9f4a2b086 Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Mon, 18 Mar 2013 02:14:28 +0900 Subject: [PATCH 4/6] upddate function mkcd --- bashrc | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/bashrc b/bashrc index 98f9dde..b015bd8 100755 --- a/bashrc +++ b/bashrc @@ -496,8 +496,14 @@ tb(){ } mkcd(){ - mkdir -p $1 - cd $1 + if test -d "$1" + then + echo "Dir \"$1\" already exists." + else + mkdir -p "$1" + echo "Dir \"$1\" created." + fi + cd "$1" } if test -n "$TMUX" && null type reattach-to-user-namespace From bd3aebccfdd455fcd2f17f6aa788fb57553f7c63 Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Thu, 4 Apr 2013 08:18:14 +0900 Subject: [PATCH 5/6] add git-prompt.sh path for macports update --- bashrc | 1 + 1 file changed, 1 insertion(+) diff --git a/bashrc b/bashrc index b015bd8..3296f53 100755 --- a/bashrc +++ b/bashrc @@ -720,6 +720,7 @@ __my_ps1_moc(){ } for f in /usr/share/git/git-prompt.sh \ + /opt/local/share/git-core/git-prompt.sh \ /opt/local/share/doc/git-core/contrib/completion/git-prompt.sh do test -r $f && . $f && break From 7150bc6ff14c10d82c6e98f47f800b7ada99f158 Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Sat, 6 Apr 2013 11:34:34 +0900 Subject: [PATCH 6/6] remove alias and envvals for pacman-color, now it is integrated into pacman --- bashrc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/bashrc b/bashrc index ebe789d..6dd3001 100755 --- a/bashrc +++ b/bashrc @@ -217,11 +217,6 @@ do done null type yaourt && alias yt=yaourt -null type pacman-color && { - alias pacman=pacman-color - export pacman_program=pacman-color # used by pacmatic - export PACMAN=pacman-color # used by yaourt -} null type pacmatic && { alias pacman="pacmatic" export PACMAN="pacmatic"