-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
- name: Show Drives on the Desktop | ||
Check warning on line 1 in tasks/finder.yml GitHub Actions / Lint
Check warning on line 1 in tasks/finder.yml GitHub Actions / Lint
Check warning on line 1 in tasks/finder.yml GitHub Actions / Lint
Check warning on line 1 in tasks/finder.yml GitHub Actions / Lint
Check warning on line 1 in tasks/finder.yml GitHub Actions / Lint
Check warning on line 1 in tasks/finder.yml GitHub Actions / Lint
Check warning on line 1 in tasks/finder.yml GitHub Actions / Lint
|
||
shell: defaults write com.apple.finder ShowHardDrivesOnDesktop -bool true | ||
|
||
- name: Show External Drives on the Desktop | ||
shell: defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true | ||
|
||
- name: Show Removable Media on the Desktop | ||
shell: defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true | ||
|
||
- name: Show Hidden Files | ||
shell: defaults write com.apple.finder AppleShowAllFiles -bool true | ||
|
||
- name: Show File Extensions | ||
shell: defaults write NSGlobalDomain AppleShowAllExtensions -bool true | ||
|
||
- name: Show the Status Bar in Finder | ||
shell: defaults write com.apple.finder ShowStatusBar -bool true | ||
|
||
- name: Show the Path Bar in Finder | ||
shell: defaults write com.apple.finder ShowPathbar -bool false | ||
|
||
Check failure on line 21 in tasks/finder.yml GitHub Actions / Lint
Check failure on line 21 in tasks/finder.yml GitHub Actions / Lint
Check failure on line 21 in tasks/finder.yml GitHub Actions / Lint
Check failure on line 21 in tasks/finder.yml GitHub Actions / Lint
Check failure on line 21 in tasks/finder.yml GitHub Actions / Lint
Check failure on line 21 in tasks/finder.yml GitHub Actions / Lint
Check failure on line 21 in tasks/finder.yml GitHub Actions / Lint
|
||
- name: Remove recent applications from the dock | ||
shell: defaults write com.apple.dock show-recents -bool false; | ||
|
||
Check failure on line 24 in tasks/finder.yml GitHub Actions / Lint
Check failure on line 24 in tasks/finder.yml GitHub Actions / Lint
Check failure on line 24 in tasks/finder.yml GitHub Actions / Lint
Check failure on line 24 in tasks/finder.yml GitHub Actions / Lint
Check failure on line 24 in tasks/finder.yml GitHub Actions / Lint
Check failure on line 24 in tasks/finder.yml GitHub Actions / Lint
Check failure on line 24 in tasks/finder.yml GitHub Actions / Lint
|
||
- name: Set number of recent applications to show in the dock | ||
shell: defaults write com.apple.dock show-recent-count -int 3; | ||
|
||
- name: Restart Dock | ||
shell: killall Dock | ||
|
||
- name: Restart Finder | ||
shell: killall Finder |