From e02a11e074320cd9b9db63bcb2c73fcf425f9c31 Mon Sep 17 00:00:00 2001 From: Morgan Wattiez Date: Tue, 6 Aug 2019 14:47:25 +0200 Subject: [PATCH] alias for weather + show all files --- dot_macos | 2 +- dot_zsh_aliases | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/dot_macos b/dot_macos index 7f34a35..9aa3317 100644 --- a/dot_macos +++ b/dot_macos @@ -2,7 +2,7 @@ # Save screenshots to the ~/Downloads folder defaults write http://com.apple.screencapture location ~/Downloads # 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 defaults write NSGlobalDomain AppleShowAllExtensions -bool true # Finder: show path bar diff --git a/dot_zsh_aliases b/dot_zsh_aliases index 9f17697..160349e 100644 --- a/dot_zsh_aliases +++ b/dot_zsh_aliases @@ -66,6 +66,7 @@ alias pip='pip3' alias c='cat' alias x='extract' alias current_year='`echo date +"%Y"`' +alias meteo='weather' # Show/hide hidden files in Finder alias show="defaults write com.apple.finder AppleShowAllFiles -bool true && killall Finder"