Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benohara committed Nov 27, 2012
1 parent f422727 commit 6da5177
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions deploy/osx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ scutil --set ComputerName "Bens MacBook Pro"
scutil --set HostName "bens-macbook-pro"
scutil --set LocalHostName "bens-macbook-pro"

# Disable creating .AppleDouble everywhere on the network shares
defaults write com.apple.desktopservices DSDontWriteNetworkStores true

# Menu bar: disable transparency
defaults write NSGlobalDomain AppleEnableMenuBarTransparency -bool false

Expand Down
12 changes: 6 additions & 6 deletions tmux/powerline/status-left.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ tmux_session_info+=(["foreground"]="colour234")
tmux_session_info+=(["background"]="colour148")
tmux_session_info+=(["separator"]="${separator_right_bold}")
#tmux_session_info+=(["separator_fg"]="default")
register_segment "tmux_session_info"
#register_segment "tmux_session_info"

declare -A hostname
hostname+=(["script"]="${segments_path}/hostname.sh")
Expand Down Expand Up @@ -56,35 +56,35 @@ vcs_branch+=(["script"]="${segments_path}/vcs_branch.sh")
vcs_branch+=(["foreground"]="colour88")
vcs_branch+=(["background"]="colour29")
vcs_branch+=(["separator"]="${separator_right_bold}")
register_segment "vcs_branch"
#register_segment "vcs_branch"

declare -A vcs_compare
vcs_compare+=(["script"]="${segments_path}/vcs_compare.sh")
vcs_compare+=(["foreground"]="white")
vcs_compare+=(["background"]="colour60")
vcs_compare+=(["separator"]="${separator_right_bold}")
register_segment "vcs_compare"
#register_segment "vcs_compare"

declare -A vcs_staged
vcs_staged+=(["script"]="${segments_path}/vcs_staged.sh")
vcs_staged+=(["foreground"]="white")
vcs_staged+=(["background"]="colour64")
vcs_staged+=(["separator"]="${separator_right_bold}")
register_segment "vcs_staged"
#register_segment "vcs_staged"

declare -A vcs_modified
vcs_modified+=(["script"]="${segments_path}/vcs_modified.sh")
vcs_modified+=(["foreground"]="white")
vcs_modified+=(["background"]="red")
vcs_modified+=(["separator"]="${separator_right_bold}")
register_segment "vcs_modified"
#register_segment "vcs_modified"

declare -A vcs_others
vcs_others+=(["script"]="${segments_path}/vcs_others.sh")
vcs_others+=(["foreground"]="black")
vcs_others+=(["background"]="colour245")
vcs_others+=(["separator"]="${separator_right_bold}")
register_segment "vcs_others"
#register_segment "vcs_others"

# Print the status line in the order of registration above.
print_status_line_left
Expand Down

0 comments on commit 6da5177

Please sign in to comment.