Minor changes
This commit is contained in:
parent
2638b684d0
commit
80c419e92c
@ -36,7 +36,9 @@ client.urgent $rd $rd $tx
|
|||||||
# finds out, if available)
|
# finds out, if available)
|
||||||
bar {
|
bar {
|
||||||
status_command i3status --config ~/.i3/i3status.conf
|
status_command i3status --config ~/.i3/i3status.conf
|
||||||
mode hide
|
font -*-*-*-*-*-*-8-*-*-*-*-*-*-*
|
||||||
|
#mode hide
|
||||||
|
#position top
|
||||||
modifier Mod4
|
modifier Mod4
|
||||||
tray_output primary
|
tray_output primary
|
||||||
tray_output LVDS1
|
tray_output LVDS1
|
||||||
@ -77,6 +79,7 @@ mode "resize" {
|
|||||||
}
|
}
|
||||||
#font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
|
#font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
|
||||||
floating_modifier $mod
|
floating_modifier $mod
|
||||||
|
bindsym $mod+z exec xdotool click 3
|
||||||
bindsym $mod+i border normal
|
bindsym $mod+i border normal
|
||||||
bindsym $mod+shift+i border 1pixel
|
bindsym $mod+shift+i border 1pixel
|
||||||
bindsym $mod+Return exec xterm
|
bindsym $mod+Return exec xterm
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
XTerm*antialias: true
|
||||||
|
XTerm*hinting: true
|
||||||
|
XTerm*hintstyle: hintlight
|
||||||
|
XTerm*rgba: rgb
|
||||||
|
XTerm*font: xft:DejaVu Sans Mono-8
|
||||||
|
XTerm*letterSpace: -1
|
||||||
|
|
||||||
XTerm*faceSize: 9
|
XTerm*faceSize: 9
|
||||||
XTerm*utf8: 1
|
XTerm*utf8: 1
|
||||||
XTerm*vt100*geometry: 80x60
|
XTerm*vt100*geometry: 80x60
|
||||||
|
43
shells/zshrc
43
shells/zshrc
@ -13,22 +13,41 @@ SAVEHIST=10000000
|
|||||||
setopt HIST_EXPIRE_DUPS_FIRST
|
setopt HIST_EXPIRE_DUPS_FIRST
|
||||||
setopt EXTENDED_HISTORY
|
setopt EXTENDED_HISTORY
|
||||||
# export PAGER=/usr/bin/w3m
|
# export PAGER=/usr/bin/w3m
|
||||||
|
plugins=(wd gem pass pip python sudo vagrant)
|
||||||
|
DISABLE_AUTO_UPDATE="true"
|
||||||
source "$HOME/.antigen/antigen.zsh"
|
source "$HOME/.antigen/antigen.zsh"
|
||||||
antigen bundle stonewareslord/oh-my-git
|
antigen bundle stonewareslord/oh-my-git
|
||||||
#antigen bundle arialdomartini/oh-my-git
|
#antigen bundle arialdomartini/oh-my-git
|
||||||
|
printf "oh-my-zsh..."
|
||||||
antigen use oh-my-zsh
|
antigen use oh-my-zsh
|
||||||
|
#printf "wd..."
|
||||||
|
#antigen bundle wd
|
||||||
|
#printf "gem..."
|
||||||
|
#antigen bundle gem
|
||||||
|
printf "pass..."
|
||||||
|
antigen bundle pass
|
||||||
|
#printf "pip..."
|
||||||
|
#antigen bundle pip
|
||||||
|
#printf "python..."
|
||||||
|
#antigen bundle python
|
||||||
|
printf "sudo..."
|
||||||
|
antigen bundle sudo
|
||||||
|
printf "vagrant..."
|
||||||
|
antigen bundle vagrant
|
||||||
|
printf "oh-my-git..."
|
||||||
antigen theme stonewareslord/oh-my-git-themes af-magic
|
antigen theme stonewareslord/oh-my-git-themes af-magic
|
||||||
|
printf "liquidprompt..."
|
||||||
antigen bundle stonewareslord/liquidprompt
|
antigen bundle stonewareslord/liquidprompt
|
||||||
|
printf "zsh-completions..."
|
||||||
antigen bundle zsh-users/zsh-completions src
|
antigen bundle zsh-users/zsh-completions src
|
||||||
|
printf "autoenv..."
|
||||||
antigen bundle sharat87/autoenv
|
antigen bundle sharat87/autoenv
|
||||||
|
printf "syntax-highlighting..."
|
||||||
|
antigen bundle zsh-users/zsh-syntax-highlighting
|
||||||
|
printf "applying..."
|
||||||
antigen apply
|
antigen apply
|
||||||
|
echo "done"
|
||||||
|
|
||||||
# Would you like to use another custom folder than $ZSH/custom?
|
|
||||||
# ZSH_CUSTOM=/path/to/new-custom-folder
|
|
||||||
# plugins=(wd gem gpg-agent pass pip python sudo vagrant)
|
|
||||||
plugins=(wd gem pass pip python sudo vagrant)
|
|
||||||
DISABLE_AUTO_UPDATE="true"
|
|
||||||
source $ZSH/oh-my-zsh.sh
|
|
||||||
if [ -f /etc/zsh_command_not_found ] ; then
|
if [ -f /etc/zsh_command_not_found ] ; then
|
||||||
source /etc/zsh_command_not_found
|
source /etc/zsh_command_not_found
|
||||||
fi
|
fi
|
||||||
@ -214,15 +233,15 @@ function k(){
|
|||||||
elif [ -f "$@" ] ; then
|
elif [ -f "$@" ] ; then
|
||||||
#Extract if it's extractable
|
#Extract if it's extractable
|
||||||
case $1 in
|
case $1 in
|
||||||
*.tar.xz) tar xvf $1 ;;
|
*.tar.xz) pv $1|tar xzf -;;
|
||||||
*.tar.bz2) tar xvjf $1 ;;
|
*.tar.bz2) pv $1|tar xjf -;;
|
||||||
*.tar.gz) tar xvzf $1 ;;
|
*.tar.gz) pv $1|tar xzf -;;
|
||||||
|
*.tar) pv $1|tar xf ;;
|
||||||
|
*.tbz2) pv $1|tar xjf ;;
|
||||||
|
*.tgz) pv $1|tar xzf ;;
|
||||||
*.bz2) bunzip2 $1 ;;
|
*.bz2) bunzip2 $1 ;;
|
||||||
*.rar) rar x $1 ;;
|
*.rar) rar x $1 ;;
|
||||||
*.gz) gunzip $1 ;;
|
*.gz) gunzip $1 ;;
|
||||||
*.tar) tar xvf $1 ;;
|
|
||||||
*.tbz2) tar xvjf $1 ;;
|
|
||||||
*.tgz) tar xvzf $1 ;;
|
|
||||||
*.zip) unzip $1 ;;
|
*.zip) unzip $1 ;;
|
||||||
*.Z) uncompress $1 ;;
|
*.Z) uncompress $1 ;;
|
||||||
*.7z) 7z x $1 ;;
|
*.7z) 7z x $1 ;;
|
||||||
|
Loading…
Reference in New Issue
Block a user