Skip to content

Commit 2498a0e

Browse files
LICENSE change «MIT License»
1 parent 5e641ba commit 2498a0e

File tree

3 files changed

+76
-22
lines changed

3 files changed

+76
-22
lines changed

LICENSE

Lines changed: 17 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
1-
This is free and unencumbered software released into the public domain.
1+
MIT License
22

3-
Anyone is free to copy, modify, publish, use, compile, sell, or
4-
distribute this software, either in source code form or as a compiled
5-
binary, for any purpose, commercial or non-commercial, and by any
6-
means.
3+
Copyright (c) 2023 github.com/Swiss-Mac-User
74

8-
In jurisdictions that recognize copyright laws, the author or authors
9-
of this software dedicate any and all copyright interest in the
10-
software to the public domain. We make this dedication for the benefit
11-
of the public at large and to the detriment of our heirs and
12-
successors. We intend this dedication to be an overt act of
13-
relinquishment in perpetuity of all present and future rights to this
14-
software under copyright law.
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
1511

16-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19-
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20-
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21-
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22-
OTHER DEALINGS IN THE SOFTWARE.
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
2314

24-
For more information, please refer to <https://unlicense.org>
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

config.default.sh

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,15 @@
1616
# |- 1.3 AirDrop
1717
# |_ 1.4 System Updates
1818
# |_ 1.5 Performance
19+
# |_ 1.6 System boot
1920
#
2021
# 2. Applications
2122
# |- 2.1 Remove Applications
2223
# |- 2.2 Required Apps
2324
# |- 2.3 Finder Extensions
2425
# |- 2.4 Application installations
2526
# |_ 2.5 Web Development Suite
27+
# |_ 2.6 Mac Gaming
2628
#
2729
# 3. User Settings
2830
# |- 3.1 Layout / User Interface
@@ -54,6 +56,9 @@ installSystemUpdates=true
5456
# -- 1.5 Performance settings --
5557
betterApplicationPerformance=true
5658

59+
# -- 1.6 System boot up --
60+
playMacStartupSound=true
61+
5762

5863
# ------------------------------
5964
# 2. Applications
@@ -108,6 +113,9 @@ installMAMP=false
108113
installNova=false
109114
installSequelAce=false
110115

116+
# -- 2.6 Mac Gaming Apps and Games --
117+
installSteam=false
118+
installWhisky=false
111119

112120
# ------------------------------
113121
# 3. User and App Settings
@@ -123,6 +131,7 @@ disableAnnoyingTextcorrections=true
123131
useRealNamesForContacts=true
124132
enableTrackpadClicks=true # <-- only applied on MacBooks (MBA, MBP)
125133
showBatteryPercentage=true # <-- only applied on MacBooks (MBA, MBP)
134+
fasterMouseCursor=true
126135

127136
# -- 3.2 macOS Finder customizations --
128137
customizeFinder=true # <-- If false, below settings will have NO effect
@@ -135,12 +144,18 @@ beautifyDock=true
135144
minimalDock=false
136145

137146
# -- 3.4 User Home folder --
147+
showLibraryFolder=true
138148
addUserApplicationsFolder=true
139-
addUserGamesFolder=true
140149
addUserWebsitesFolder=true
141-
showLibraryFolder=true
150+
# -- 3.4.1 «Games» folder --
151+
addUserGamesFolder=true
142152
useCustomGamesFolderIcon=true # <-- Requires Games Folder (addUserGamesFolder=TRUE)
143153
useCustomGamesFolderIconURL='https://swissmacuser.ch/wp-content/uploads/2021/06/Games-Folder-Icon-macOS-12-Monterey-detailed.png'
154+
# -- 3.4.2 Wallpapers (Desktop Pictures) --
155+
downloadWallpapers=true # <-- Required to download any Wallpapers
156+
dynamicWallpaperExodus=false
157+
dynamicWallpaperFuji=false
158+
dynamicWallpaperISS=false
144159

145160
# -- 3.5 Terminal app settings --
146161
enableTerminalUtf8=true

run.sh

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,11 @@ if [ "$enableScreensaverPassword" = true ]; then
7272
enableUserpasswordOnScreensaver
7373
showinfo "" "confirm"
7474
fi
75+
if [ "$playMacStartupSound" = true ]; then
76+
showinfo "Enabling the iconic Startup Chime on your Mac:" "note"
77+
enableStartupChime
78+
showinfo "" "confirm"
79+
fi
7580

7681

7782

@@ -155,6 +160,11 @@ if [ "$enableTrackpadClicks" = true ] && checkIfMacIsPortable; then
155160
enableTrackpadClicking
156161
showinfo "" "confirm"
157162
fi
163+
if [ "$fasterMouseCursor" = true ]; then
164+
showinfo "Speedup Cursor on Trackpads and Mouses:" "note"
165+
increaseMouseSpeed
166+
showinfo "" "confirm"
167+
fi
158168

159169
# -- Dock --
160170
if [ "$speedupDock" = true ]; then
@@ -288,6 +298,26 @@ if [ "$addUserGamesFolder" = true ]; then
288298
createUserFolderGames
289299
showinfo "" "confirm"
290300
fi
301+
# --> Desktop Pictures
302+
if [ "$downloadWallpapers" = true ]; then
303+
showinfo "Adding Desktop Pictures folder to userhome ~/Pictures/:" "note"
304+
createUserFolderDesktopPictures
305+
showinfo "" "confirm"
306+
307+
if [ "$dynamicWallpaperExodus" = true ]; then
308+
showinfo "...downloading «Exodus» wallpaper to ~/Pictures/Desktop Pictures/" "note"
309+
downloadWallpaperExodus
310+
fi
311+
if [ "$dynamicWallpaperFuji" = true ]; then
312+
showinfo "...downloading «Fuji» wallpaper to ~/Pictures/Desktop Pictures/" "note"
313+
downloadWallpaperFuji
314+
fi
315+
if [ "$dynamicWallpaperISS" = true ]; then
316+
showinfo "...downloading «ISS» wallpaper to ~/Pictures/Desktop Pictures/" "note"
317+
downloadWallpaperISS
318+
fi
319+
showinfo "" "confirm"
320+
fi
291321

292322

293323

@@ -416,6 +446,18 @@ if [ "$installVLC" = true ]; then
416446
installAppVLC
417447
showinfo "" "confirm"
418448
fi
449+
# -- Steam --
450+
if [ "$installSteam" = true ]; then
451+
showinfo "Installing Steam:" "note"
452+
installAppSteam
453+
showinfo "" "confirm"
454+
fi
455+
# -- Whisky --
456+
if [ "$installWhisky" = true ]; then
457+
showinfo "Installing Whisky:" "note"
458+
installAppWhisky
459+
showinfo "" "confirm"
460+
fi
419461
# -- Xcode Command Line Tools --
420462
if [ "$installXcodeTools" = true ] || [ "$installHomebrew" = true ]; then
421463
# !! NOTE: Pre-requisite for Homebrew !!

0 commit comments

Comments
 (0)