Skip to content

Commit

Permalink
feat: add Dock configs
Browse files Browse the repository at this point in the history
  • Loading branch information
YasminTeles committed Aug 8, 2024
1 parent 0aedb7d commit 53d5ac2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
1 change: 1 addition & 0 deletions brew/Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ tap "homebrew/services"
brew "stow"
brew "git"
brew "shellcheck"
brew "dockutil"

# Terminal
brew "spaceship"
Expand Down
20 changes: 18 additions & 2 deletions macos/defaults.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,22 @@ defaults write NSGlobalDomain AppleShowAllExtensions -bool true
# Disable recent tags section in Finder.
defaults write com.apple.Finder ShowRecentTags -bool false

# Restarts cfprefsd and Finder
killAll cfprefsd
# Restart Finder
killAll Finder

###############################################################################
# Dock, Dashboard, and hot corners #
###############################################################################

# Add my favorite applications in the Dock
dockutil --no-restart --remove all
dockutil --no-restart --add "/Applications/Spotify.app"
dockutil --no-restart --add "/Applications/Notion.app"
dockutil --no-restart --add "/Applications/Notion Calendar.app"
dockutil --no-restart --add "/Applications/Slack.app"
dockutil --no-restart --add "/Applications/Google Chrome.app"
dockutil --no-restart --add "/Applications/Visual Studio Code.app"
dockutil --no-restart --add "/Applications/iTerm.app"

# Restart Dock
killall Dock

0 comments on commit 53d5ac2

Please sign in to comment.