# 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
fi
# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
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
fi
if [ "$color_prompt" = yes ]; then
else
fi
unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
*)
esac
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
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.
#
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
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
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
#
#
#
############################################################
#
#
#
###########################################################
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
fi
export XMODIFIERS="@im=fcitx"
export GTK_IM_MODULE=xim # 或者是xim,取决于你是否编译了对应的输入法模块
export QT_IM_MODULE=xim # 或者是xim,取决于你是否编译了对应的输入法模块