Skip to content

Commit

Permalink
LICENSE change «MIT License»
Browse files Browse the repository at this point in the history
  • Loading branch information
Swiss-Mac-User committed Sep 6, 2023
1 parent 5e641ba commit 2498a0e
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 22 deletions.
37 changes: 17 additions & 20 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
This is free and unencumbered software released into the public domain.
MIT License

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

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

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

For more information, please refer to <https://unlicense.org>
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
19 changes: 17 additions & 2 deletions config.default.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@
# |- 1.3 AirDrop
# |_ 1.4 System Updates
# |_ 1.5 Performance
# |_ 1.6 System boot
#
# 2. Applications
# |- 2.1 Remove Applications
# |- 2.2 Required Apps
# |- 2.3 Finder Extensions
# |- 2.4 Application installations
# |_ 2.5 Web Development Suite
# |_ 2.6 Mac Gaming
#
# 3. User Settings
# |- 3.1 Layout / User Interface
Expand Down Expand Up @@ -54,6 +56,9 @@ installSystemUpdates=true
# -- 1.5 Performance settings --
betterApplicationPerformance=true

# -- 1.6 System boot up --
playMacStartupSound=true


# ------------------------------
# 2. Applications
Expand Down Expand Up @@ -108,6 +113,9 @@ installMAMP=false
installNova=false
installSequelAce=false

# -- 2.6 Mac Gaming Apps and Games --
installSteam=false
installWhisky=false

# ------------------------------
# 3. User and App Settings
Expand All @@ -123,6 +131,7 @@ disableAnnoyingTextcorrections=true
useRealNamesForContacts=true
enableTrackpadClicks=true # <-- only applied on MacBooks (MBA, MBP)
showBatteryPercentage=true # <-- only applied on MacBooks (MBA, MBP)
fasterMouseCursor=true

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

# -- 3.4 User Home folder --
showLibraryFolder=true
addUserApplicationsFolder=true
addUserGamesFolder=true
addUserWebsitesFolder=true
showLibraryFolder=true
# -- 3.4.1 «Games» folder --
addUserGamesFolder=true
useCustomGamesFolderIcon=true # <-- Requires Games Folder (addUserGamesFolder=TRUE)
useCustomGamesFolderIconURL='https://swissmacuser.ch/wp-content/uploads/2021/06/Games-Folder-Icon-macOS-12-Monterey-detailed.png'
# -- 3.4.2 Wallpapers (Desktop Pictures) --
downloadWallpapers=true # <-- Required to download any Wallpapers
dynamicWallpaperExodus=false
dynamicWallpaperFuji=false
dynamicWallpaperISS=false

# -- 3.5 Terminal app settings --
enableTerminalUtf8=true
Expand Down
42 changes: 42 additions & 0 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ if [ "$enableScreensaverPassword" = true ]; then
enableUserpasswordOnScreensaver
showinfo "" "confirm"
fi
if [ "$playMacStartupSound" = true ]; then
showinfo "Enabling the iconic Startup Chime on your Mac:" "note"
enableStartupChime
showinfo "" "confirm"
fi



Expand Down Expand Up @@ -155,6 +160,11 @@ if [ "$enableTrackpadClicks" = true ] && checkIfMacIsPortable; then
enableTrackpadClicking
showinfo "" "confirm"
fi
if [ "$fasterMouseCursor" = true ]; then
showinfo "Speedup Cursor on Trackpads and Mouses:" "note"
increaseMouseSpeed
showinfo "" "confirm"
fi

# -- Dock --
if [ "$speedupDock" = true ]; then
Expand Down Expand Up @@ -288,6 +298,26 @@ if [ "$addUserGamesFolder" = true ]; then
createUserFolderGames
showinfo "" "confirm"
fi
# --> Desktop Pictures
if [ "$downloadWallpapers" = true ]; then
showinfo "Adding Desktop Pictures folder to userhome ~/Pictures/:" "note"
createUserFolderDesktopPictures
showinfo "" "confirm"

if [ "$dynamicWallpaperExodus" = true ]; then
showinfo "...downloading «Exodus» wallpaper to ~/Pictures/Desktop Pictures/" "note"
downloadWallpaperExodus
fi
if [ "$dynamicWallpaperFuji" = true ]; then
showinfo "...downloading «Fuji» wallpaper to ~/Pictures/Desktop Pictures/" "note"
downloadWallpaperFuji
fi
if [ "$dynamicWallpaperISS" = true ]; then
showinfo "...downloading «ISS» wallpaper to ~/Pictures/Desktop Pictures/" "note"
downloadWallpaperISS
fi
showinfo "" "confirm"
fi



Expand Down Expand Up @@ -416,6 +446,18 @@ if [ "$installVLC" = true ]; then
installAppVLC
showinfo "" "confirm"
fi
# -- Steam --
if [ "$installSteam" = true ]; then
showinfo "Installing Steam:" "note"
installAppSteam
showinfo "" "confirm"
fi
# -- Whisky --
if [ "$installWhisky" = true ]; then
showinfo "Installing Whisky:" "note"
installAppWhisky
showinfo "" "confirm"
fi
# -- Xcode Command Line Tools --
if [ "$installXcodeTools" = true ] || [ "$installHomebrew" = true ]; then
# !! NOTE: Pre-requisite for Homebrew !!
Expand Down

0 comments on commit 2498a0e

Please sign in to comment.