This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fish_prompt | |
# Hostname | |
set_color --background $computer_color | |
set_color 000 | |
set_color --bold | |
echo -n ' '$computer_name' ' | |
set_color --background normal | |
echo -n ' ' | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chflags nohidden ~/Library | |
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true | |
defaults write com.apple.desktopservices DSDontWriteUSBStores -bool true | |
defaults write com.apple.dock autohide -bool true | |
defaults write com.apple.dock autohide-delay -float 0 | |
defaults write com.apple.dock launchanim -bool false | |
defaults write com.apple.dock magnification -bool false | |
defaults write com.apple.dock mru-spaces -bool false | |
defaults write com.apple.dock show-process-indicators -bool true | |
defaults write com.apple.dock size-immutable -bool true |