zoukankan      html  css  js  c++  java
  • .bashrc(ubuntu12.04)

    # ~/.bashrc: executed by bash(1) for non-login shells.
    # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
    # for examples

    # If not running interactively, don't do anything

    [ -z "$PS1" ] && return

    # don't put duplicate lines or lines starting with space in the history.

    # See bash(1) for more options
    HISTCONTROL=ignoreboth

    # append to the history file, don't overwrite it

    shopt -s histappend

    # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)

    HISTSIZE=1000
    HISTFILESIZE=2000

    # check the window size after each command and, if necessary,

    # update the values of LINES and COLUMNS.
    shopt -s checkwinsize

    # If set, the pattern "**" used in a pathname expansion context will

    # match all files and zero or more directories and subdirectories.
    #shopt -s globstar

    # make less more friendly for non-text input files, see lesspipe(1)

    [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"

    # set variable identifying the chroot you work in (used in the prompt below)

    if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
        debian_chroot=$(cat /etc/debian_chroot)
    fi

    # set a fancy prompt (non-color, unless we know we "want" color)

    case "$TERM" in
        xterm-color) color_prompt=yes;;
    esac

    # uncomment for a colored prompt, if the terminal has the capability; turned

    # off by default to not distract the user: the focus in a terminal window
    # should be on the output of commands, not on the prompt
    #force_color_prompt=yes

    if [ -n "$force_color_prompt" ]; then

        if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
        # We have color support; assume it's compliant with Ecma-48
        # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
        # a case would tend to support setf rather than setaf.)
        color_prompt=yes
        else
        color_prompt=
        fi
    fi

    if [ "$color_prompt" = yes ]; then

        PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
    else
        PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
    fi
    unset color_prompt force_color_prompt

    # If this is an xterm set the title to user@host:dir

    case "$TERM" in
    xterm*|rxvt*)
        PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
        ;;
    *)
        ;;
    esac

    # enable color support of ls and also add handy aliases

    if [ -x /usr/bin/dircolors ]; then
        test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
        alias ls='ls --color=auto'
        alias dir='dir --color=auto'
        alias vdir='vdir --color=auto'

        alias grep='grep --color=auto'
        alias fgrep='fgrep --color=auto'
        alias egrep='egrep --color=auto'
    fi

    # some more ls aliases

    alias ll='ls -alhF'
    alias la='ls -Ah'
    alias l='ls -CF'
    alias si='sudo apt-get install'
    alias mp='mplayer -vo fbdev2 -vf screenshot -zoom -x 1024 -y 600 -msglevel all=0 -nodouble -lavdopts threads=16 '
    alias mplayer='mplayer -vf screenshot -quiet -nodouble -lavdopts threads=16 '

    # Add an "alert" alias for long running commands.  Use like so:

      sleep 10; alert
    alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'

    # Alias definitions.

    # You may want to put all your additions into a separate file like
    # ~/.bash_aliases, instead of adding them here directly.
    # See /usr/share/doc/bash-doc/examples in the bash-doc package.

    if [ -f ~/.bash_aliases ]; then

        . ~/.bash_aliases
    fi

    # enable programmable completion features (you don't need to enable

    # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
    # sources /etc/bash.bashrc).
    if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
        . /etc/bash_completion
    fi
    PS1='\[\e[35;1m\]\u\[\e[36;1m\]@\[\e[33;1m\]\h\[\e[34;1m\]:\[\e[31;1m\]\W\[\e[32;1;5m\]\$\[\e[0m'

    play /home/liujun/music/start.wav &>/dev/null


    xrdb -merge ~/.Xdefaults 2>/dev/null



    ############################################################3

      BASH: Display that the shell spawned from ranger:
          By putting this in ~/.bashrc, "(in ranger) " will be displayed next to your prompt to notify you that the shell
          spawned from ranger.

        [ -n "$RANGER_LEVEL" ] && PS1="$PS1"'(in ranger) '


    ############################################################

      Bash: cd to last path after exit
          This is a bash function (for ~/.bashrc) to change the directory to the last visited one after ranger quits.  You
          can always type "cd -" to go back to the original one.

        function ranger-cd {
          tempfile='/tmp/chosendir'
          /usr/local/bin/ranger --choosedir="$tempfile" "${@:-$(pwd)}"
          test -f "$tempfile" &&
          if [ "$(cat -- "$tempfile")" != "$(echo -n `pwd`)" ]; then
            cd -- "$(cat "$tempfile")"
          fi
          rm -f -- "$tempfile"
        }

        # This binds Ctrl-O to ranger-cd:
        bind '"\C-o":"ranger-cd\C-m"'

    ###########################################################


    function tmux-cd {

    /usr/bin/tmux
    }
    bind '"\C-x":"tmux-cd\C-m"'

    ##########################################################


    function fbterm-cd {

    back='/home/liujun/picture/bt4.png'
    /home/liujun/picture/fbterm-bi $back
    }
    bind '"\C-n":"fbterm-cd\C-m"'
    ##########################################################

    function ibus-fbterm-cd {

    back='/home/liujun/picture/bt4.png'
    /home/liujun/picture/ibus-fbterm-bi $back
    }
    bind '"\C-v":"ibus-fbterm-cd\C-m"'
    ##########################################################
    if [ "$(tty)" == "/dev/tty[0-9]" ] || [ "$(tty)" == "/dev/pts/[0-100]" ];then
        env DISPLAY=:0 fbterm -i fcitx-fbterm
    fi

    export XMODIFIERS="@im=fcitx"

    export GTK_IM_MODULE=xim # 或者是xim,取决于你是否编译了对应的输入法模块
    export QT_IM_MODULE=xim # 或者是xim,取决于你是否编译了对应的输入法模块


  • 相关阅读:
    根据IP获取省市 .
    支付宝接口使用步骤及总结
    最新调用优酷视频 免前置广告的方法
    SQL新增数据取表主键最新值
    JS获取地址栏参数
    图片(img标签)的onerror事件
    prototype.js的Ajax对IE8兼容问题解决方案
    基于.net技术的 Rss 订阅开发
    JS获取Dropdownlist选中值
    阿里云tomcat启动慢
  • 原文地址:https://www.cnblogs.com/lixuebin/p/10814650.html
Copyright © 2011-2022 走看看