alias for weather + show all files

This commit is contained in:
Morgan Wattiez 2019-08-06 14:47:25 +02:00
parent 106fd4ee88
commit e02a11e074
2 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,7 @@
# Save screenshots to the ~/Downloads folder # Save screenshots to the ~/Downloads folder
defaults write http://com.apple.screencapture location ~/Downloads defaults write http://com.apple.screencapture location ~/Downloads
# Finder: show hidden files by default # Finder: show hidden files by default
#defaults write com.apple.finder AppleShowAllFiles -bool true defaults write com.apple.finder AppleShowAllFiles YES
# Finder: show all filename extensions # Finder: show all filename extensions
defaults write NSGlobalDomain AppleShowAllExtensions -bool true defaults write NSGlobalDomain AppleShowAllExtensions -bool true
# Finder: show path bar # Finder: show path bar

View File

@ -66,6 +66,7 @@ alias pip='pip3'
alias c='cat' alias c='cat'
alias x='extract' alias x='extract'
alias current_year='`echo date +"%Y"`' alias current_year='`echo date +"%Y"`'
alias meteo='weather'
# Show/hide hidden files in Finder # Show/hide hidden files in Finder
alias show="defaults write com.apple.finder AppleShowAllFiles -bool true && killall Finder" alias show="defaults write com.apple.finder AppleShowAllFiles -bool true && killall Finder"