Skip to content

Commit

Permalink
Update:
Browse files Browse the repository at this point in the history
- some typo fixes
- no longer export TERM
- new aliases
- no longer use i3-gaps
- add new i3 decoration_border color support
  • Loading branch information
budimanjojo committed Sep 10, 2016
1 parent f1a2dfa commit 3df2dd5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
1 change: 0 additions & 1 deletion .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ setopt interactivecomments # enable comments in interactive s
## Default editor
export EDITOR=/usr/bin/vim
export VISUAL=/usr/bin/vim
export TERM=xterm-256color

##########################################################################
################ This section is added by JOJO ZSH PROMPT ################
Expand Down
2 changes: 1 addition & 1 deletion conky/.conkyrc_clock
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

conky.config = {
background = true,
xinerama_head= 0,
xinerama_head = 0,
double_buffer = true,
alignment = 'top_left',
border_width = 0,
Expand Down
24 changes: 12 additions & 12 deletions i3/config
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,8 @@ exec --no-startup-id $HOME/.conkyrc/.conkyrci3/start_conky_i3.sh
floating_maximum_size 1676 x 976

# new window rules
new_float pixel 1
new_window none
new_float none
new_window pixel 1

# window floating and placement by default
for_window [window_type="dialog,utility,toolbar,splash,menu,dropdown_menu,popup_menu,tooltip,notification,dock"] floating enable border pixel 1
Expand Down Expand Up @@ -279,14 +279,14 @@ font pango:Ubuntu, Awesome 11

# window title formatting
for_window [class=".*"] title_format "<b> %title</b>"

for_window [class="^.*"] border pixel 1

# title bar colors
# border background text indicator
client.focused $bg-color $bg-color $text-color $indi-color
client.unfocused $bg-color $inac-bg-color $inac-text-color $indi-color
client.focused_inactive $bg-color $inac-bg-color $inac-text-color $indi-color
client.urgent $urgent-bg-color $urgent-bg-color $text-color $indi-color
# border background text indicator decoration_border
client.focused $bg-color $bg-color $text-color $indi-color $border-color
client.unfocused $bg-color $inac-bg-color $inac-text-color $indi-color $border-color
client.focused_inactive $bg-color $inac-bg-color $inac-text-color $indi-color $border-color
client.urgent $urgent-bg-color $urgent-bg-color $text-color $indi-color $border-color

# bar
bar {
Expand All @@ -306,9 +306,9 @@ bar {
}

# i3-gaps
gaps inner 10
gaps outer 0
smart_borders on
smart_gaps on
#gaps inner 10
#gaps outer 0
#smart_borders on
#smart_gaps on

# }}}
4 changes: 3 additions & 1 deletion my-zsh/alias.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -393,13 +393,15 @@ function apt-list-packages {
alias vim-alias='$EDITOR ~/.my-zsh/alias.zsh'
alias vim-vimrc='$EDITOR ~/.vimrc'
alias vim-zshrc='$EDITOR ~/.zshrc'
alias vim-i3wm='$EDITOR ~/.config/i3/config'
alias vim-i3wm='$EDITOR ~/.i3/config'
alias vim-mirrors='sudo $EDITOR /etc/pacman-mirrors.conf'
alias vim-pacman='sudo $EDITOR /etc/pacman.conf'
alias vim-sudoers='sudo $EDITOR visudo'
alias vim-makepkg='sudo $EDITOR /etc/makepkg.conf'
alias vim-completion='$EDITOR ~/.my-zsh/completion.zsh'
alias vim-keybinding='$EDITOR ~/.my-zsh/keybinding.zsh'
alias vim-compton='$EDITOR ~/.config/compton.conf'
alias vim-dunst='$EDITOR ~/.config/dunst'
# Basic functions
alias cpr='cp -R'
alias rmr='rm -R'
Expand Down

0 comments on commit 3df2dd5

Please sign in to comment.