├── .DS_Store ├── 00_bootable_usb_device ├── 0a_format_bootable_usb_device.sh ├── 0b_create_bootable_usb_device.sh └── 0c_booting_from_external_drive.txt ├── 01_recovery_settings_and_nvram ├── 1a_recovery_settings.txt └── 1b_nvram.sh ├── 02_preparations ├── 2a_system_update.sh ├── 2b_install_updates_apps_copy_files.txt ├── 2c_install_command_line_tools.sh ├── 2d_login_shell_customization.sh ├── 2e_keyboard_input_source.sh └── symbolic_links_testvolume_macos_beta.sh ├── 03_homebrew_casks_and_mas ├── .DS_Store ├── 3a_homebrew_casks_and_command_line_tools_uninstall.sh ├── 3b_homebrew_casks_and_mas_install │ ├── 0_run_all.command │ ├── 1_script_frame.sh │ ├── 2_command_line_tools.sh │ ├── 3_homebrew_cask.sh │ ├── 4_homebrew_formulae.sh │ ├── 5_casks.sh │ ├── 6_mas_appstore.sh │ ├── 7_formulae_casks_and_mas_install_check.sh │ └── _lists │ │ ├── 00_casks_pre.txt │ │ ├── 01_homebrew_formulae.txt │ │ ├── 02_casks.txt │ │ ├── 03_casks_specific1.txt │ │ └── 04_mas_apps.txt ├── 3c_homebrew_formulae_and_casks_update │ ├── .DS_Store │ ├── app │ │ └── brew_casks_update.app │ │ │ ├── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ │ └── applet │ │ │ ├── PkgInfo │ │ │ ├── Resources │ │ │ │ ├── Scripts │ │ │ │ │ └── main.scpt │ │ │ │ ├── applet.icns │ │ │ │ ├── applet.rsrc │ │ │ │ └── description.rtfd │ │ │ │ │ └── TXT.rtf │ │ │ └── custom_files │ │ │ │ ├── brew_casks_update.icns │ │ │ │ └── brew_casks_update.sh │ │ │ └── Icon │ ├── brew_casks_update.dmg │ ├── build │ │ └── build.sh │ ├── dmg │ │ └── brew_casks_update │ │ │ ├── app │ │ │ └── brew_casks_update.app │ │ │ │ ├── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ │ └── applet │ │ │ │ ├── PkgInfo │ │ │ │ ├── Resources │ │ │ │ │ ├── Scripts │ │ │ │ │ │ └── main.scpt │ │ │ │ │ ├── applet.icns │ │ │ │ │ ├── applet.rsrc │ │ │ │ │ └── description.rtfd │ │ │ │ │ │ └── TXT.rtf │ │ │ │ └── custom_files │ │ │ │ │ ├── brew_casks_update.icns │ │ │ │ │ └── brew_casks_update.sh │ │ │ │ └── Icon │ │ │ ├── install_script │ │ │ └── install.sh │ │ │ ├── run_to_install.command │ │ │ └── scpt │ │ │ └── install.scpt │ ├── icons │ │ ├── _macos_10 │ │ │ ├── brew.png │ │ │ └── brew_casks_update.icns │ │ ├── brew_casks_update.icns │ │ ├── create_icns.sh │ │ ├── icon_set.sh │ │ └── macos_11_icon_homebrew.png │ ├── scpt │ │ └── brew_casks_update.scpt │ └── shell_script │ │ ├── brew_casks_update Kopie.sh │ │ └── brew_casks_update.sh ├── 3d_totalfinder_install.sh ├── 3d_xtrafinder_install.sh ├── 3e_manual_app_installations.txt └── 3f_homebrew_ssh1.sh ├── 04_ssd_optimizations ├── _old │ ├── 4_ssd.sh │ └── 4a_ssd_undo.sh └── ssd_scripts_deprecated.txt ├── 05_network_configuration ├── .DS_Store ├── 5_network.sh ├── 5_network_reset.sh ├── _old │ ├── 5_network_automatic_office_lan_wlan.sh │ ├── 5_network_tom_multiple_wlans.sh │ ├── 5_network_tom_no_profile.sh │ └── 5_network_tom_thunderbold.sh └── profiles │ └── network_profile_example.conf ├── 06_manual_installations_restores ├── 6a_install_apps.txt ├── 6b_restore_backup_files_folders.txt └── _old │ └── 6a_install_apps_mojave.txt ├── 07_backup_and_restore_script ├── .DS_Store ├── archive │ ├── .DS_Store │ ├── archive_tar_gz_file_or_folder.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── applet │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ ├── Scripts │ │ │ └── main.scpt │ │ │ ├── applet.icns │ │ │ ├── applet.rsrc │ │ │ └── description.rtfd │ │ │ └── TXT.rtf │ ├── archive_tar_gz_file_or_folder.scpt │ ├── archive_tar_gz_pgp_file_or_folder.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── applet │ │ │ ├── PkgInfo │ │ │ ├── Resources │ │ │ ├── Scripts │ │ │ │ └── main.scpt │ │ │ ├── applet.icns │ │ │ ├── applet.rsrc │ │ │ └── description.rtfd │ │ │ │ └── TXT.rtf │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── archive_tar_gz_pgp_file_or_folder.scpt │ ├── encrypt_pgp_password_file.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── applet │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ ├── Scripts │ │ │ └── main.scpt │ │ │ ├── applet.icns │ │ │ ├── applet.rsrc │ │ │ └── description.rtfd │ │ │ └── TXT.rtf │ └── encrypt_pgp_password_file.scpt ├── backup_restore_script │ ├── ask_restore_dir.scpt │ ├── ask_restore_master_dir.scpt │ ├── ask_restore_user_dir.scpt │ ├── ask_save_to.scpt │ ├── backup_restore_script_mac.sh │ ├── compress_and_move_backup.sh │ └── run_script.scpt ├── files │ ├── .DS_Store │ ├── _old │ │ └── run_files_backup_terminal_tab_old.sh │ ├── backup_files.sh │ ├── backup_files_run_script.sh │ ├── backup_files_tar_gz.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── applet │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ ├── Scripts │ │ │ └── main.scpt │ │ │ ├── applet.icns │ │ │ ├── applet.rsrc │ │ │ └── description.rtfd │ │ │ └── TXT.rtf │ ├── backup_files_tar_gz.scpt │ ├── restore_ask_dir_files.scpt │ ├── restore_ask_dir_utm.scpt │ ├── restore_ask_dir_vbox.scpt │ └── restore_files.sh ├── gui_apps │ ├── .DS_Store │ ├── _old │ │ ├── calendar.zip │ │ ├── contacts.zip │ │ └── reminders.zip │ ├── gui_apps_backup.app │ │ ├── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ │ └── applet │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ │ ├── Scripts │ │ │ │ └── main.scpt │ │ │ │ ├── applet.icns │ │ │ │ ├── applet.rsrc │ │ │ │ └── description.rtfd │ │ │ │ └── TXT.rtf │ │ └── Icon │ ├── gui_apps_backup.scpt │ ├── icons │ │ ├── _macos_10 │ │ │ ├── gui_apps_backup.png │ │ │ ├── gui_apps_backup.svg │ │ │ └── gui_apps_backup_macos_10.icns │ │ ├── create_icns.sh │ │ ├── gui_apps_backup.icns │ │ ├── icon_set.sh │ │ └── macos_11_icon_gui_backups.png │ ├── mouseclick │ ├── mouseclick_bin_create.sh │ ├── mouseclick_double │ └── mouseclick_double_bin_create.sh ├── keychain │ └── reset_restore_keychain.txt ├── list │ ├── _old │ │ ├── backup_restore_list_2018-10-04.txt │ │ ├── backup_restore_list_2018-10-05.txt │ │ ├── backup_restore_list_2019-09-05.txt │ │ └── backup_restore_list_2019-10-20.txt │ └── backup_restore_list.txt ├── permissions │ └── ownerships_and_permissions_restore.sh ├── profiles │ └── backup_profile_example.conf ├── run_backup_script.command ├── run_restore_script.command ├── unarchive │ ├── .DS_Store │ ├── old │ │ ├── unarchive_tar_gz.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── applet │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ ├── Scripts │ │ │ │ └── main.scpt │ │ │ │ ├── applet.icns │ │ │ │ ├── applet.rsrc │ │ │ │ └── description.rtfd │ │ │ │ └── TXT.rtf │ │ ├── unarchive_tar_gz.scpt │ │ ├── unarchive_tar_gz_split.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── applet │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ ├── Scripts │ │ │ │ └── main.scpt │ │ │ │ ├── applet.icns │ │ │ │ ├── applet.rsrc │ │ │ │ └── description.rtfd │ │ │ │ └── TXT.rtf │ │ └── unarchive_tar_gz_split.scpt │ ├── unarchive_finder_input │ │ ├── _readme.txt │ │ ├── app │ │ │ ├── _readme.txt │ │ │ ├── decrypt_finder_input_gpg_progress.app │ │ │ │ ├── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ │ └── Application Stub │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── AutomatorApplet.icns │ │ │ │ │ │ ├── ar.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── ca.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── el.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── en_AU.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── en_GB.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── es_419.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── fi.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── fr_CA.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── he.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── hi.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── hr.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── hu.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── id.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── ms.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── no.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── pt.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── sk.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── th.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── vi.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── zh_HK.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── document.wflow │ │ │ │ └── Icon │ │ │ └── unarchive_finder_input_tar_gz_gpg_preserve_permissions_progress.app │ │ │ │ ├── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ │ └── Application Stub │ │ │ │ ├── Resources │ │ │ │ │ ├── AutomatorApplet.icns │ │ │ │ │ ├── ar.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── ca.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── el.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── en_AU.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── en_GB.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── es_419.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── fi.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── fr_CA.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── he.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── hi.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── hr.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── hu.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── id.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── ms.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── no.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── pt.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── sk.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── th.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── vi.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── zh_HK.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── document.wflow │ │ │ │ └── Icon │ │ ├── build │ │ │ └── build.sh │ │ ├── decrypt_finder_input_gpg_progress.dmg │ │ ├── dmg │ │ │ ├── decrypt_finder_input_gpg_progress │ │ │ │ ├── app │ │ │ │ │ └── decrypt_finder_input_gpg_progress.app │ │ │ │ │ │ ├── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ └── Application Stub │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── AutomatorApplet.icns │ │ │ │ │ │ │ ├── ar.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── ca.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── el.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── en_AU.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── en_GB.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── es_419.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── fi.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── fr_CA.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── he.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── hi.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── hr.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── hu.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── id.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── ms.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── no.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── pt.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── sk.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── th.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── vi.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ ├── zh_HK.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── document.wflow │ │ │ │ │ │ └── Icon │ │ │ │ ├── install_script │ │ │ │ │ └── install.sh │ │ │ │ ├── run_to_install.command │ │ │ │ └── scpt │ │ │ │ │ └── install.scpt │ │ │ └── unarchive_finder_input_tar_gz_gpg_preserve_permissions_progress │ │ │ │ ├── app │ │ │ │ └── unarchive_finder_input_tar_gz_gpg_preserve_permissions_progress.app │ │ │ │ │ ├── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ │ └── Application Stub │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── AutomatorApplet.icns │ │ │ │ │ │ ├── ar.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── ca.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── el.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── en_AU.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── en_GB.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── es_419.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── fi.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── fr_CA.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── he.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── hi.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── hr.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── hu.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── id.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── ms.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── no.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── pt.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── sk.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── th.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── vi.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── zh_HK.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── document.wflow │ │ │ │ │ └── Icon │ │ │ │ ├── install_script │ │ │ │ └── install.sh │ │ │ │ ├── run_to_install.command │ │ │ │ └── scpt │ │ │ │ └── install.scpt │ │ ├── icons │ │ │ ├── _macos_10 │ │ │ │ ├── decrypt_finder_input_gpg_progress.icns │ │ │ │ ├── gpg.icns │ │ │ │ └── unarchive_finder_input_tar_gz_gpg_preserve_permissions_progress.icns │ │ │ ├── create_icns.sh │ │ │ ├── decrypt_finder_input_gpg_progress.icns │ │ │ ├── document.icns │ │ │ ├── gpg.icns │ │ │ ├── gpg.png │ │ │ ├── icon_set.sh │ │ │ ├── macos_11_icon_gpg.png │ │ │ └── unarchive_finder_input_tar_gz_gpg_preserve_permissions_progress.icns │ │ └── unarchive_finder_input_tar_gz_gpg_preserve_permissions_progress.dmg │ ├── unarchive_tar_gz_gpg_perms_progress.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── applet │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ ├── Scripts │ │ │ └── main.scpt │ │ │ ├── applet.icns │ │ │ ├── applet.rsrc │ │ │ └── description.rtfd │ │ │ └── TXT.rtf │ ├── unarchive_tar_gz_gpg_perms_progress.scpt │ ├── unarchive_tar_gz_gpg_perms_progress_all_in_folder.command │ ├── unarchive_tar_gz_perms_onboard.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── applet │ │ │ ├── PkgInfo │ │ │ ├── Resources │ │ │ ├── Scripts │ │ │ │ └── main.scpt │ │ │ ├── applet.icns │ │ │ ├── applet.rsrc │ │ │ └── description.rtfd │ │ │ │ └── TXT.rtf │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── unarchive_tar_gz_perms_onboard.scpt │ ├── unarchive_tar_gz_perms_progress.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── applet │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ ├── Scripts │ │ │ └── main.scpt │ │ │ ├── applet.icns │ │ │ ├── applet.rsrc │ │ │ └── description.rtfd │ │ │ └── TXT.rtf │ ├── unarchive_tar_gz_perms_progress.scpt │ └── unarchive_tar_gz_progress_all_in_folder.command ├── update_homebrew │ ├── .DS_Store │ └── brew_casks_update.app │ │ ├── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ │ └── applet │ │ ├── PkgInfo │ │ ├── Resources │ │ │ ├── Scripts │ │ │ │ └── main.scpt │ │ │ ├── applet.icns │ │ │ ├── applet.rsrc │ │ │ └── description.rtfd │ │ │ │ └── TXT.rtf │ │ └── custom_files │ │ │ ├── brew_casks_update.icns │ │ │ └── brew_casks_update.sh │ │ └── Icon ├── update_hosts │ └── hosts_file_generator.sh ├── update_macos │ └── updates_macos.sh ├── utm_backup │ ├── .DS_Store │ ├── app │ │ └── utm_backup.app │ │ │ ├── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ │ └── applet │ │ │ ├── PkgInfo │ │ │ ├── Resources │ │ │ │ ├── Scripts │ │ │ │ │ └── main.scpt │ │ │ │ ├── applet.icns │ │ │ │ ├── applet.rsrc │ │ │ │ └── description.rtfd │ │ │ │ │ └── TXT.rtf │ │ │ └── custom_files │ │ │ │ ├── utm_backup.icns │ │ │ │ └── utm_backup.sh │ │ │ └── Icon │ ├── ask_save_to_utm.scpt │ ├── build │ │ └── build.sh │ ├── icons │ │ ├── create_icns.sh │ │ ├── icon_set.sh │ │ ├── macos_11_icon_utm_backup.png │ │ └── utm_backup.icns │ ├── scpt │ │ └── utm_backup.scpt │ ├── shell_script │ │ └── utm_backup.sh │ └── utm_backup.app │ │ ├── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ │ └── applet │ │ ├── PkgInfo │ │ ├── Resources │ │ │ ├── Scripts │ │ │ │ └── main.scpt │ │ │ ├── applet.icns │ │ │ ├── applet.rsrc │ │ │ └── description.rtfd │ │ │ │ └── TXT.rtf │ │ └── custom_files │ │ │ ├── utm_backup.icns │ │ │ └── utm_backup.sh │ │ └── Icon └── vbox_backup │ ├── .DS_Store │ ├── app │ └── virtualbox_backup.app │ │ ├── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ │ └── applet │ │ ├── PkgInfo │ │ ├── Resources │ │ │ ├── Scripts │ │ │ │ └── main.scpt │ │ │ ├── applet.icns │ │ │ ├── applet.rsrc │ │ │ └── description.rtfd │ │ │ │ └── TXT.rtf │ │ └── custom_files │ │ │ ├── virtualbox_backup.icns │ │ │ └── virtualbox_backup.sh │ │ └── Icon │ ├── ask_save_to_vbox.scpt │ ├── build │ └── build.sh │ ├── icons │ ├── _macos_10 │ │ ├── virtualbox_backup_macos_10.icns │ │ └── virtualbox_backup_macos_10.png │ ├── create_icns.sh │ ├── icon_set.sh │ ├── macos_11_icon_vbox_backup.png │ └── virtualbox_backup.icns │ ├── scpt │ └── virtualbox_backup.scpt │ ├── shell_script │ └── virtualbox_backup.sh │ └── virtualbox_backup.app │ ├── Contents │ ├── Info.plist │ ├── MacOS │ │ └── applet │ ├── PkgInfo │ ├── Resources │ │ ├── Scripts │ │ │ └── main.scpt │ │ ├── applet.icns │ │ ├── applet.rsrc │ │ └── description.rtfd │ │ │ └── TXT.rtf │ └── custom_files │ │ ├── virtualbox_backup.icns │ │ └── virtualbox_backup.sh │ └── Icon ├── 08_java_6 └── 8_java6_runtime.sh ├── 09_launchd ├── .DS_Store ├── 9b_run_on_boot │ ├── .DS_Store │ ├── root │ │ ├── 0_example_root │ │ │ ├── install_example_root_launchdservice.sh │ │ │ └── launchd_and_script │ │ │ │ ├── checking_installation.sh │ │ │ │ ├── com.example_root.show.plist │ │ │ │ ├── example_root.sh │ │ │ │ └── uninstall_example_root_and_launchdservice.sh │ │ ├── 1_hosts_file │ │ │ ├── install_hosts_file_generator_and_launchdservice.sh │ │ │ └── launchd_and_script │ │ │ │ ├── checking_installation.sh │ │ │ │ ├── com.hostsfile.install_update.plist │ │ │ │ ├── hosts_file_generator.sh │ │ │ │ └── uninstall_hosts_file_generator_and_launchdservice.sh │ │ ├── 3_network_select │ │ │ ├── install_network_select_and_launchdservice.sh │ │ │ └── launchd_and_script │ │ │ │ ├── _old │ │ │ │ └── network_select_profiles_without_ethernet_device.sh │ │ │ │ ├── checking_installation.sh │ │ │ │ ├── com.network.select.plist │ │ │ │ ├── network_select.sh │ │ │ │ └── uninstall_network_select_and_launchdservice.sh │ │ ├── 4_clamav_monitor │ │ │ ├── install_clamav_monitor_and_launchdservice.sh │ │ │ └── launchd_and_script │ │ │ │ ├── checking_installation.sh │ │ │ │ ├── clamav_monitor.sh │ │ │ │ ├── clamav_scan │ │ │ │ ├── app │ │ │ │ │ └── clamav_scan.app │ │ │ │ │ │ ├── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ └── applet │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Scripts │ │ │ │ │ │ │ │ └── main.scpt │ │ │ │ │ │ │ ├── applet.icns │ │ │ │ │ │ │ ├── applet.rsrc │ │ │ │ │ │ │ └── description.rtfd │ │ │ │ │ │ │ │ └── TXT.rtf │ │ │ │ │ │ └── custom_files │ │ │ │ │ │ │ ├── clamav_icon.icns │ │ │ │ │ │ │ ├── clamav_scan.sh │ │ │ │ │ │ │ ├── clamav_scan_done.app │ │ │ │ │ │ │ ├── Contents │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ │ │ └── applet │ │ │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ │ ├── Scripts │ │ │ │ │ │ │ │ │ └── main.scpt │ │ │ │ │ │ │ │ │ ├── applet.icns │ │ │ │ │ │ │ │ │ ├── applet.rsrc │ │ │ │ │ │ │ │ │ └── description.rtfd │ │ │ │ │ │ │ │ │ └── TXT.rtf │ │ │ │ │ │ │ └── Icon │ │ │ │ │ │ │ ├── clamav_scan_found.app │ │ │ │ │ │ │ ├── Contents │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ │ │ └── applet │ │ │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ │ ├── Scripts │ │ │ │ │ │ │ │ │ └── main.scpt │ │ │ │ │ │ │ │ │ ├── applet.icns │ │ │ │ │ │ │ │ │ ├── applet.rsrc │ │ │ │ │ │ │ │ │ └── description.rtfd │ │ │ │ │ │ │ │ │ └── TXT.rtf │ │ │ │ │ │ │ └── Icon │ │ │ │ │ │ │ └── clamav_scan_stopped.app │ │ │ │ │ │ │ ├── Contents │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ │ └── applet │ │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ ├── Scripts │ │ │ │ │ │ │ │ └── main.scpt │ │ │ │ │ │ │ │ ├── applet.icns │ │ │ │ │ │ │ │ ├── applet.rsrc │ │ │ │ │ │ │ │ └── description.rtfd │ │ │ │ │ │ │ │ └── TXT.rtf │ │ │ │ │ │ │ └── Icon │ │ │ │ │ │ └── Icon │ │ │ │ ├── build │ │ │ │ │ └── build.sh │ │ │ │ ├── clamav_scan.dmg │ │ │ │ ├── dmg │ │ │ │ │ └── clamav_scan │ │ │ │ │ │ ├── app │ │ │ │ │ │ └── clamav_scan.app │ │ │ │ │ │ │ ├── Contents │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ │ └── applet │ │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ ├── Scripts │ │ │ │ │ │ │ │ │ └── main.scpt │ │ │ │ │ │ │ │ ├── applet.icns │ │ │ │ │ │ │ │ ├── applet.rsrc │ │ │ │ │ │ │ │ └── description.rtfd │ │ │ │ │ │ │ │ │ └── TXT.rtf │ │ │ │ │ │ │ └── custom_files │ │ │ │ │ │ │ │ ├── clamav_icon.icns │ │ │ │ │ │ │ │ ├── clamav_scan.sh │ │ │ │ │ │ │ │ ├── clamav_scan_done.app │ │ │ │ │ │ │ │ ├── Contents │ │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ │ │ │ └── applet │ │ │ │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ │ │ ├── Scripts │ │ │ │ │ │ │ │ │ │ └── main.scpt │ │ │ │ │ │ │ │ │ │ ├── applet.icns │ │ │ │ │ │ │ │ │ │ ├── applet.rsrc │ │ │ │ │ │ │ │ │ │ └── description.rtfd │ │ │ │ │ │ │ │ │ │ └── TXT.rtf │ │ │ │ │ │ │ │ └── Icon │ │ │ │ │ │ │ │ ├── clamav_scan_found.app │ │ │ │ │ │ │ │ ├── Contents │ │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ │ │ │ └── applet │ │ │ │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ │ │ ├── Scripts │ │ │ │ │ │ │ │ │ │ └── main.scpt │ │ │ │ │ │ │ │ │ │ ├── applet.icns │ │ │ │ │ │ │ │ │ │ ├── applet.rsrc │ │ │ │ │ │ │ │ │ │ └── description.rtfd │ │ │ │ │ │ │ │ │ │ └── TXT.rtf │ │ │ │ │ │ │ │ └── Icon │ │ │ │ │ │ │ │ └── clamav_scan_stopped.app │ │ │ │ │ │ │ │ ├── Contents │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ │ │ └── applet │ │ │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ │ ├── Scripts │ │ │ │ │ │ │ │ │ └── main.scpt │ │ │ │ │ │ │ │ │ ├── applet.icns │ │ │ │ │ │ │ │ │ ├── applet.rsrc │ │ │ │ │ │ │ │ │ └── description.rtfd │ │ │ │ │ │ │ │ │ └── TXT.rtf │ │ │ │ │ │ │ │ └── Icon │ │ │ │ │ │ │ └── Icon │ │ │ │ │ │ ├── install_script │ │ │ │ │ │ └── install.sh │ │ │ │ │ │ ├── run_to_install.command │ │ │ │ │ │ └── scpt │ │ │ │ │ │ └── install.scpt │ │ │ │ ├── done │ │ │ │ │ └── clamav_scan_done.app │ │ │ │ │ │ ├── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ └── applet │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── Scripts │ │ │ │ │ │ │ └── main.scpt │ │ │ │ │ │ │ ├── applet.icns │ │ │ │ │ │ │ ├── applet.rsrc │ │ │ │ │ │ │ └── description.rtfd │ │ │ │ │ │ │ └── TXT.rtf │ │ │ │ │ │ └── Icon │ │ │ │ ├── found │ │ │ │ │ └── clamav_scan_found.app │ │ │ │ │ │ ├── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ └── applet │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── Scripts │ │ │ │ │ │ │ └── main.scpt │ │ │ │ │ │ │ ├── applet.icns │ │ │ │ │ │ │ ├── applet.rsrc │ │ │ │ │ │ │ └── description.rtfd │ │ │ │ │ │ │ └── TXT.rtf │ │ │ │ │ │ └── Icon │ │ │ │ ├── icons │ │ │ │ │ ├── _macos_10 │ │ │ │ │ │ ├── clamav_icon_250.png │ │ │ │ │ │ ├── clamav_icon_350.png │ │ │ │ │ │ └── clamav_icon_macos_10.icns │ │ │ │ │ ├── clamav_icon.icns │ │ │ │ │ ├── create_icns.sh │ │ │ │ │ ├── icon_set.sh │ │ │ │ │ └── macos_11_icon_clamav.png │ │ │ │ ├── scpt │ │ │ │ │ ├── clamav_scan.scpt │ │ │ │ │ ├── clamav_scan_done.scpt │ │ │ │ │ ├── clamav_scan_found.scpt │ │ │ │ │ └── clamav_scan_stopped.scpt │ │ │ │ ├── shell_script │ │ │ │ │ └── clamav_scan.sh │ │ │ │ └── stopped │ │ │ │ │ └── clamav_scan_stopped.app │ │ │ │ │ ├── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ │ └── applet │ │ │ │ │ ├── PkgInfo │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── Scripts │ │ │ │ │ │ └── main.scpt │ │ │ │ │ │ ├── applet.icns │ │ │ │ │ │ ├── applet.rsrc │ │ │ │ │ │ └── description.rtfd │ │ │ │ │ │ └── TXT.rtf │ │ │ │ │ └── Icon │ │ │ │ ├── com.clamav.monitor.plist │ │ │ │ └── uninstall_clamav_monitor_and_launchdservice.sh │ │ └── 5_run_on_boot_general │ │ │ ├── install_run_on_boot_and_launchdservice.sh │ │ │ └── launchd_and_script │ │ │ ├── checking_installation.sh │ │ │ ├── com.run_on.boot.plist │ │ │ ├── run_on_boot.sh │ │ │ └── uninstall_run_on_boot_and_launchdservice.sh │ └── user │ │ ├── 0_example_user │ │ ├── install_example_user_launchdservice.sh │ │ └── launchd_and_script │ │ │ ├── checking_installation.sh │ │ │ ├── com.example_user.show.plist │ │ │ ├── example_user.sh │ │ │ └── uninstall_example_user_and_launchdservice.sh │ │ ├── 1_screen_resolution │ │ ├── install_screen_resolution_user_launchdservice.sh │ │ └── launchd_and_script │ │ │ ├── checking_installation.sh │ │ │ ├── com.screen_resolution.set.plist │ │ │ ├── screen_resolution.sh │ │ │ └── uninstall_screen_resolution_and_launchdservice.sh │ │ ├── 2_reminders │ │ ├── install_reminders_user_launchdservice.sh │ │ └── launchd_and_script │ │ │ ├── checking_installation.sh │ │ │ ├── com.reminders.set.plist │ │ │ ├── reminders.sh │ │ │ └── uninstall_reminders_and_launchdservice.sh │ │ └── 3_wifi_reconnect │ │ ├── install_wifi_reconnect_user_launchdservice.sh │ │ └── launchd_and_script │ │ ├── checking_installation.sh │ │ ├── com.wifi_reconnect.set.plist │ │ ├── uninstall_wifi_reconnect_and_launchdservice.sh │ │ └── wifi_reconnect.sh ├── 9d_run_on_login │ └── autostart_apps │ │ ├── _old │ │ ├── install_run_on_login_reminders.sh │ │ ├── run_on_login_reminders.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── applet │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ ├── Scripts │ │ │ │ └── main.scpt │ │ │ │ ├── applet.icns │ │ │ │ ├── applet.rsrc │ │ │ │ └── description.rtfd │ │ │ │ └── TXT.rtf │ │ ├── run_on_login_reminders.scpt │ │ ├── run_on_network_change_login.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── applet │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ ├── Scripts │ │ │ │ └── main.scpt │ │ │ │ ├── applet.icns │ │ │ │ ├── applet.rsrc │ │ │ │ └── description.rtfd │ │ │ │ └── TXT.rtf │ │ └── run_on_network_change_login.scpt │ │ ├── install_files │ │ ├── _old │ │ │ └── run_on_login_wireguard.scpt │ │ ├── run_on_login_signal.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── applet │ │ │ │ ├── PkgInfo │ │ │ │ ├── Resources │ │ │ │ ├── Scripts │ │ │ │ │ └── main.scpt │ │ │ │ ├── applet.icns │ │ │ │ ├── applet.rsrc │ │ │ │ └── description.rtfd │ │ │ │ │ └── TXT.rtf │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── run_on_login_signal.scpt │ │ ├── run_on_login_telephone.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── applet │ │ │ │ ├── PkgInfo │ │ │ │ ├── Resources │ │ │ │ ├── Scripts │ │ │ │ │ └── main.scpt │ │ │ │ ├── applet.icns │ │ │ │ ├── applet.rsrc │ │ │ │ └── description.rtfd │ │ │ │ │ └── TXT.rtf │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── run_on_login_telephone.scpt │ │ ├── run_on_login_tradingview.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── applet │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ ├── Scripts │ │ │ │ └── main.scpt │ │ │ │ ├── applet.icns │ │ │ │ ├── applet.rsrc │ │ │ │ └── description.rtfd │ │ │ │ └── TXT.rtf │ │ ├── run_on_login_tradingview.scpt │ │ ├── run_on_login_virusscannerplus.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── applet │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ ├── Scripts │ │ │ │ └── main.scpt │ │ │ │ ├── applet.icns │ │ │ │ ├── applet.rsrc │ │ │ │ └── description.rtfd │ │ │ │ └── TXT.rtf │ │ ├── run_on_login_virusscannerplus.scpt │ │ ├── run_on_login_whatsapp.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── applet │ │ │ │ ├── PkgInfo │ │ │ │ ├── Resources │ │ │ │ ├── Scripts │ │ │ │ │ └── main.scpt │ │ │ │ ├── applet.icns │ │ │ │ ├── applet.rsrc │ │ │ │ └── description.rtfd │ │ │ │ │ └── TXT.rtf │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ └── run_on_login_whatsapp.scpt │ │ ├── install_run_on_login_signal.sh │ │ ├── install_run_on_login_telephone.sh │ │ ├── install_run_on_login_tradingview.sh │ │ ├── install_run_on_login_virusscannerplus.sh │ │ ├── install_run_on_login_whatsapp.sh │ │ └── install_run_on_login_wireguard.sh ├── 9e_run_on_shutdown │ ├── install_script_run_on_shutdown_launchdservice.sh │ └── launchd_and_script │ │ ├── checking_installation.sh │ │ ├── com.run_on.shutdown.plist │ │ ├── run_on_shutdown.sh │ │ └── uninstall_run_on_shutdown_and_launchdservice.sh ├── _deprecated │ ├── .DS_Store │ ├── 9b_run_on_boot │ │ └── 2_cert_install_update │ │ │ ├── install_cert_install_update_launchdservice.sh │ │ │ └── launchd_and_script │ │ │ ├── cert_install_update.sh │ │ │ ├── checking_installation.sh │ │ │ ├── com.cert.install_update.plist │ │ │ └── uninstall_cert_install_update_and_launchdservice.sh │ ├── 9c_run_on_logout │ │ ├── install_files │ │ │ └── run_on_logout.sh │ │ └── install_run_on_logout_hook.sh │ ├── 9d_run_on_login │ │ └── system │ │ │ ├── install_files │ │ │ └── run_on_login.sh │ │ │ └── install_run_on_login_hook.sh │ └── deprecation_of_login_and_logout_scripts.txt └── _not_in_use │ └── 9a_run_on_network_change │ ├── 9a_install_run_on_network_change.sh │ └── install_files │ ├── com.run_script_on_network_change.plist │ ├── run_on_network_change.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── applet │ │ ├── PkgInfo │ │ └── Resources │ │ ├── Scripts │ │ └── main.scpt │ │ ├── applet.icns │ │ ├── applet.rsrc │ │ └── description.rtfd │ │ └── TXT.rtf │ └── run_on_network_change.scpt ├── 10_dock ├── 10_dock.sh └── profiles │ └── dock_profile_example.conf ├── 11_system_and_app_preferences ├── 11a_system_preferences_privacy_sqlite_10_14.sh ├── 11a_system_preferences_privacy_sqlite_10_15.sh ├── 11a_system_preferences_privacy_sqlite_11.sh ├── 11a_system_preferences_privacy_sqlite_12.sh ├── 11a_system_preferences_privacy_sqlite_13.sh ├── 11a_system_preferences_privacy_sqlite_14.sh ├── 11a_system_preferences_privacy_sqlite_15.sh ├── 11b_safari_extensions_cookies.sh ├── 11c_macos_preferences_10_14.sh ├── 11c_macos_preferences_10_15.sh ├── 11c_macos_preferences_11.sh ├── 11c_macos_preferences_12.sh ├── 11c_macos_preferences_13.sh ├── 11c_macos_preferences_14.sh ├── 11c_macos_preferences_15.sh ├── 11d_system_preferences_spotlight.sh ├── 11e_defaults_open_with.sh ├── 11f_finder_sidebar_10_14.sh ├── 11f_finder_sidebar_10_15.sh ├── 11f_finder_sidebar_11.sh ├── 11f_finder_sidebar_12.sh ├── 11f_finder_sidebar_13.sh ├── 11f_finder_sidebar_14.sh ├── 11f_finder_sidebar_15.sh ├── 11f_finder_sidebar_python_wrapper.sh ├── 11g_finder_favorites.py ├── 11g_finder_favorites_applescript.sh ├── 11g_finder_favorites_python_wrapper.sh ├── 11h_notification_center_10_14.sh ├── 11h_notification_center_10_15.sh ├── 11h_notification_center_11.sh ├── 11h_notification_center_12.sh ├── 11h_notification_center_13.sh ├── 11h_notification_center_14.sh ├── 11h_notification_center_15.sh ├── 11i_reset_calendar_contacts_reminders_data_10_14.sh ├── 11i_reset_calendar_contacts_reminders_data_10_15.sh ├── 11i_reset_calendar_contacts_reminders_data_11.sh ├── 11i_reset_calendar_contacts_reminders_data_12.sh ├── 11i_reset_calendar_contacts_reminders_data_13.sh ├── 11i_reset_calendar_contacts_reminders_data_14.sh ├── 11i_reset_calendar_contacts_reminders_data_15.sh ├── 11j_set_calendar_alarms_10_14.sh ├── 11j_set_calendar_alarms_10_15.sh ├── 11j_set_calendar_alarms_11.sh ├── 11j_set_calendar_alarms_12.sh ├── 11j_set_calendar_alarms_13.sh ├── 11j_set_calendar_alarms_14.sh ├── 11j_set_calendar_alarms_15.sh ├── 11k_third_party_app_preferences.sh └── _old │ ├── .DS_Store │ ├── 11j_set_calendar_alarms_10_15_old_account_groups.sh │ ├── _10_13_high_sierra │ ├── 11a_osx_preferences_privacy_sqlite.sh │ ├── 11f_finder_sidebar_10_13.scpt │ └── 11h_notification_center_high_sierra.sh │ └── _10_14_mojave │ ├── 11a_app_profiles │ ├── 11a_system_preferences_privacy_app_profiles_mojave_all.sh │ ├── 11a_system_preferences_privacy_app_profiles_mojave_single_app.sh │ ├── Alfred 4.txt │ ├── BL Banking Launcher.txt │ ├── Bartender 3.txt │ ├── Commander One.txt │ ├── EagleFiler.txt │ ├── Finder.txt │ ├── GeburtstagsChecker.txt │ ├── MacPass.txt │ ├── Mail.txt │ ├── Ondesoft AudioBook Converter.txt │ ├── Overflow 3.txt │ ├── PasswordWallet.txt │ ├── Script Editor.txt │ ├── System Events.txt │ ├── System Preferences.txt │ ├── Terminal.txt │ ├── VNC Viewer.txt │ ├── VirtualBox Menulet.txt │ ├── VirtualBox.txt │ ├── XtraFinder.txt │ ├── backup_files_tar_gz.txt │ ├── brew_casks_update.txt │ ├── decrypt_finder_input_gpg_progress.txt │ ├── gui_apps_backup.txt │ ├── iStat Menus.txt │ ├── iTerm.txt │ ├── iTunes.txt │ ├── pdf_200dpi_shrink.txt │ ├── run_on_login_signal.txt │ ├── run_on_login_whatsapp.txt │ ├── unarchive_finder_input_tar_gz_gpg_preserve_permissions_progress.txt │ ├── video_720p_h265_aac_shrink.txt │ ├── virtualbox_backup.txt │ └── witchdaemon.txt │ └── 11f_finder_sidebar_10_14.scpt ├── 12_licenses └── 12_restore_licenses.txt ├── 13_apple_mail_and_accounts ├── 13a_migrate_internet_accounts.sh ├── 13b_reset_mail_index.sh └── _old │ ├── accounts_mail_calendar_contacts_el_capitan.txt │ └── accounts_mail_calendar_contacts_sierra.txt ├── 14_samba └── 14a_samba.sh ├── 15_finalizations ├── 15a_applications_manual_preferences_open.sh ├── 15b_applications_preferences_manual.txt ├── 15c_disable_siri_analytics_and_learning_10_14.sh ├── 15c_disable_siri_analytics_and_learning_10_15.sh ├── 15c_disable_siri_analytics_and_learning_11.sh ├── 15c_disable_siri_analytics_and_learning_12.sh ├── 15c_disable_siri_analytics_and_learning_13.sh ├── 15c_disable_siri_analytics_and_learning_14.sh ├── 15c_disable_siri_analytics_and_learning_15.sh ├── 15d_firefox_hardening.sh ├── 15e_final_steps.txt ├── 15f_remove_dock_notifications.sh └── _old │ ├── 15b_applications_preferences_manual.txt │ └── 15e_final_steps_including_macos11.txt ├── 16_seed_update_configuration └── 16_seed_configuration_software_update.txt ├── README.md ├── _batch_run ├── _old │ ├── batch_script_part2b.command │ └── batch_script_part3.command ├── batch_script_part1.command ├── batch_script_part2a.txt ├── batch_script_part2b.command └── batch_script_part3.command ├── _config_file ├── install_config_file.sh ├── script_start_example.sh └── shellscriptsrc.sh ├── _mobileconfig ├── install_mobileconfig_profiles_12.sh ├── install_mobileconfig_profiles_13.sh ├── install_mobileconfig_profiles_14.sh ├── install_profiles_13.scpt ├── install_profiles_14.scpt ├── mouseclick └── mouseclick_double └── _user_profiles └── scripts_profile_example.conf /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/.DS_Store -------------------------------------------------------------------------------- /00_bootable_usb_device/0a_format_bootable_usb_device.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/00_bootable_usb_device/0a_format_bootable_usb_device.sh -------------------------------------------------------------------------------- /00_bootable_usb_device/0b_create_bootable_usb_device.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/00_bootable_usb_device/0b_create_bootable_usb_device.sh -------------------------------------------------------------------------------- /00_bootable_usb_device/0c_booting_from_external_drive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/00_bootable_usb_device/0c_booting_from_external_drive.txt -------------------------------------------------------------------------------- /01_recovery_settings_and_nvram/1a_recovery_settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/01_recovery_settings_and_nvram/1a_recovery_settings.txt -------------------------------------------------------------------------------- /01_recovery_settings_and_nvram/1b_nvram.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/01_recovery_settings_and_nvram/1b_nvram.sh -------------------------------------------------------------------------------- /02_preparations/2a_system_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/02_preparations/2a_system_update.sh -------------------------------------------------------------------------------- /02_preparations/2b_install_updates_apps_copy_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/02_preparations/2b_install_updates_apps_copy_files.txt -------------------------------------------------------------------------------- /02_preparations/2c_install_command_line_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/02_preparations/2c_install_command_line_tools.sh -------------------------------------------------------------------------------- /02_preparations/2d_login_shell_customization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/02_preparations/2d_login_shell_customization.sh -------------------------------------------------------------------------------- /02_preparations/2e_keyboard_input_source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/02_preparations/2e_keyboard_input_source.sh -------------------------------------------------------------------------------- /02_preparations/symbolic_links_testvolume_macos_beta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/02_preparations/symbolic_links_testvolume_macos_beta.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/.DS_Store -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3a_homebrew_casks_and_command_line_tools_uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3a_homebrew_casks_and_command_line_tools_uninstall.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/0_run_all.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/0_run_all.command -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/1_script_frame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/1_script_frame.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/2_command_line_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/2_command_line_tools.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/3_homebrew_cask.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/3_homebrew_cask.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/4_homebrew_formulae.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/4_homebrew_formulae.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/5_casks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/5_casks.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/6_mas_appstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/6_mas_appstore.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/7_formulae_casks_and_mas_install_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/7_formulae_casks_and_mas_install_check.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/_lists/00_casks_pre.txt: -------------------------------------------------------------------------------- 1 | # add casks here that have to be installed upfront -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/_lists/01_homebrew_formulae.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/_lists/01_homebrew_formulae.txt -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/_lists/02_casks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/_lists/02_casks.txt -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/_lists/03_casks_specific1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/_lists/03_casks_specific1.txt -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/_lists/04_mas_apps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3b_homebrew_casks_and_mas_install/_lists/04_mas_apps.txt -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/.DS_Store -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Contents/Info.plist -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Contents/custom_files/brew_casks_update.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Contents/custom_files/brew_casks_update.icns -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Contents/custom_files/brew_casks_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Contents/custom_files/brew_casks_update.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/app/brew_casks_update.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/brew_casks_update.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/brew_casks_update.dmg -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/build/build.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/dmg/brew_casks_update/app/brew_casks_update.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/dmg/brew_casks_update/app/brew_casks_update.app/Contents/Info.plist -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/dmg/brew_casks_update/app/brew_casks_update.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/dmg/brew_casks_update/app/brew_casks_update.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/dmg/brew_casks_update/app/brew_casks_update.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/dmg/brew_casks_update/app/brew_casks_update.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/dmg/brew_casks_update/install_script/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/dmg/brew_casks_update/install_script/install.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/dmg/brew_casks_update/run_to_install.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/dmg/brew_casks_update/run_to_install.command -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/dmg/brew_casks_update/scpt/install.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/dmg/brew_casks_update/scpt/install.scpt -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/icons/_macos_10/brew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/icons/_macos_10/brew.png -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/icons/_macos_10/brew_casks_update.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/icons/_macos_10/brew_casks_update.icns -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/icons/brew_casks_update.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/icons/brew_casks_update.icns -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/icons/create_icns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/icons/create_icns.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/icons/icon_set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/icons/icon_set.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/icons/macos_11_icon_homebrew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/icons/macos_11_icon_homebrew.png -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/scpt/brew_casks_update.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/scpt/brew_casks_update.scpt -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/shell_script/brew_casks_update Kopie.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/shell_script/brew_casks_update Kopie.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/shell_script/brew_casks_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3c_homebrew_formulae_and_casks_update/shell_script/brew_casks_update.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3d_totalfinder_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3d_totalfinder_install.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3d_xtrafinder_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3d_xtrafinder_install.sh -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3e_manual_app_installations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3e_manual_app_installations.txt -------------------------------------------------------------------------------- /03_homebrew_casks_and_mas/3f_homebrew_ssh1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/03_homebrew_casks_and_mas/3f_homebrew_ssh1.sh -------------------------------------------------------------------------------- /04_ssd_optimizations/_old/4_ssd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/04_ssd_optimizations/_old/4_ssd.sh -------------------------------------------------------------------------------- /04_ssd_optimizations/_old/4a_ssd_undo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/04_ssd_optimizations/_old/4a_ssd_undo.sh -------------------------------------------------------------------------------- /04_ssd_optimizations/ssd_scripts_deprecated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/04_ssd_optimizations/ssd_scripts_deprecated.txt -------------------------------------------------------------------------------- /05_network_configuration/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/05_network_configuration/.DS_Store -------------------------------------------------------------------------------- /05_network_configuration/5_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/05_network_configuration/5_network.sh -------------------------------------------------------------------------------- /05_network_configuration/5_network_reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/05_network_configuration/5_network_reset.sh -------------------------------------------------------------------------------- /05_network_configuration/_old/5_network_automatic_office_lan_wlan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/05_network_configuration/_old/5_network_automatic_office_lan_wlan.sh -------------------------------------------------------------------------------- /05_network_configuration/_old/5_network_tom_multiple_wlans.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/05_network_configuration/_old/5_network_tom_multiple_wlans.sh -------------------------------------------------------------------------------- /05_network_configuration/_old/5_network_tom_no_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/05_network_configuration/_old/5_network_tom_no_profile.sh -------------------------------------------------------------------------------- /05_network_configuration/_old/5_network_tom_thunderbold.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/05_network_configuration/_old/5_network_tom_thunderbold.sh -------------------------------------------------------------------------------- /05_network_configuration/profiles/network_profile_example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/05_network_configuration/profiles/network_profile_example.conf -------------------------------------------------------------------------------- /06_manual_installations_restores/6a_install_apps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/06_manual_installations_restores/6a_install_apps.txt -------------------------------------------------------------------------------- /06_manual_installations_restores/6b_restore_backup_files_folders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/06_manual_installations_restores/6b_restore_backup_files_folders.txt -------------------------------------------------------------------------------- /06_manual_installations_restores/_old/6a_install_apps_mojave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/06_manual_installations_restores/_old/6a_install_apps_mojave.txt -------------------------------------------------------------------------------- /07_backup_and_restore_script/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/.DS_Store -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/.DS_Store -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/archive_tar_gz_file_or_folder.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/archive_tar_gz_file_or_folder.app/Contents/Info.plist -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/archive_tar_gz_file_or_folder.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/archive_tar_gz_file_or_folder.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/archive_tar_gz_file_or_folder.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/archive_tar_gz_file_or_folder.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/archive_tar_gz_file_or_folder.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/archive_tar_gz_file_or_folder.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/archive_tar_gz_file_or_folder.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/archive_tar_gz_file_or_folder.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/archive_tar_gz_file_or_folder.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/archive_tar_gz_file_or_folder.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/archive_tar_gz_file_or_folder.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/archive_tar_gz_file_or_folder.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/archive_tar_gz_file_or_folder.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/archive_tar_gz_pgp_file_or_folder.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/archive_tar_gz_pgp_file_or_folder.app/Contents/Info.plist -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/archive_tar_gz_pgp_file_or_folder.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/archive_tar_gz_pgp_file_or_folder.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/archive_tar_gz_pgp_file_or_folder.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/archive_tar_gz_pgp_file_or_folder.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/archive_tar_gz_pgp_file_or_folder.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/archive_tar_gz_pgp_file_or_folder.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/archive_tar_gz_pgp_file_or_folder.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/archive_tar_gz_pgp_file_or_folder.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/archive_tar_gz_pgp_file_or_folder.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/archive_tar_gz_pgp_file_or_folder.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/archive_tar_gz_pgp_file_or_folder.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/archive_tar_gz_pgp_file_or_folder.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/archive_tar_gz_pgp_file_or_folder.app/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/archive_tar_gz_pgp_file_or_folder.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/archive_tar_gz_pgp_file_or_folder.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/encrypt_pgp_password_file.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/encrypt_pgp_password_file.app/Contents/Info.plist -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/encrypt_pgp_password_file.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/encrypt_pgp_password_file.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/encrypt_pgp_password_file.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/encrypt_pgp_password_file.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/encrypt_pgp_password_file.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/encrypt_pgp_password_file.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/encrypt_pgp_password_file.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/encrypt_pgp_password_file.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/encrypt_pgp_password_file.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/encrypt_pgp_password_file.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/encrypt_pgp_password_file.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /07_backup_and_restore_script/archive/encrypt_pgp_password_file.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/archive/encrypt_pgp_password_file.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/backup_restore_script/ask_restore_dir.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/backup_restore_script/ask_restore_dir.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/backup_restore_script/ask_restore_master_dir.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/backup_restore_script/ask_restore_master_dir.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/backup_restore_script/ask_restore_user_dir.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/backup_restore_script/ask_restore_user_dir.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/backup_restore_script/ask_save_to.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/backup_restore_script/ask_save_to.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/backup_restore_script/backup_restore_script_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/backup_restore_script/backup_restore_script_mac.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/backup_restore_script/compress_and_move_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/backup_restore_script/compress_and_move_backup.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/backup_restore_script/run_script.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/backup_restore_script/run_script.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/files/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/files/.DS_Store -------------------------------------------------------------------------------- /07_backup_and_restore_script/files/_old/run_files_backup_terminal_tab_old.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/files/_old/run_files_backup_terminal_tab_old.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/files/backup_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/files/backup_files.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/files/backup_files_run_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/files/backup_files_run_script.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/files/backup_files_tar_gz.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/files/backup_files_tar_gz.app/Contents/Info.plist -------------------------------------------------------------------------------- /07_backup_and_restore_script/files/backup_files_tar_gz.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/files/backup_files_tar_gz.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /07_backup_and_restore_script/files/backup_files_tar_gz.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /07_backup_and_restore_script/files/backup_files_tar_gz.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/files/backup_files_tar_gz.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/files/backup_files_tar_gz.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/files/backup_files_tar_gz.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/files/backup_files_tar_gz.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/files/backup_files_tar_gz.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /07_backup_and_restore_script/files/backup_files_tar_gz.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/files/backup_files_tar_gz.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /07_backup_and_restore_script/files/backup_files_tar_gz.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/files/backup_files_tar_gz.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/files/restore_ask_dir_files.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/files/restore_ask_dir_files.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/files/restore_ask_dir_utm.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/files/restore_ask_dir_utm.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/files/restore_ask_dir_vbox.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/files/restore_ask_dir_vbox.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/files/restore_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/files/restore_files.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/.DS_Store -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/_old/calendar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/_old/calendar.zip -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/_old/contacts.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/_old/contacts.zip -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/_old/reminders.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/_old/reminders.zip -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/gui_apps_backup.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/gui_apps_backup.app/Contents/Info.plist -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/gui_apps_backup.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/gui_apps_backup.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/gui_apps_backup.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/gui_apps_backup.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/gui_apps_backup.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/gui_apps_backup.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/gui_apps_backup.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/gui_apps_backup.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/gui_apps_backup.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/gui_apps_backup.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/gui_apps_backup.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/gui_apps_backup.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/gui_apps_backup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/gui_apps_backup.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/icons/_macos_10/gui_apps_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/icons/_macos_10/gui_apps_backup.png -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/icons/_macos_10/gui_apps_backup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/icons/_macos_10/gui_apps_backup.svg -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/icons/_macos_10/gui_apps_backup_macos_10.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/icons/_macos_10/gui_apps_backup_macos_10.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/icons/create_icns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/icons/create_icns.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/icons/gui_apps_backup.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/icons/gui_apps_backup.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/icons/icon_set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/icons/icon_set.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/icons/macos_11_icon_gui_backups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/icons/macos_11_icon_gui_backups.png -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/mouseclick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/mouseclick -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/mouseclick_bin_create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/mouseclick_bin_create.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/mouseclick_double: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/mouseclick_double -------------------------------------------------------------------------------- /07_backup_and_restore_script/gui_apps/mouseclick_double_bin_create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/gui_apps/mouseclick_double_bin_create.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/keychain/reset_restore_keychain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/keychain/reset_restore_keychain.txt -------------------------------------------------------------------------------- /07_backup_and_restore_script/list/_old/backup_restore_list_2018-10-04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/list/_old/backup_restore_list_2018-10-04.txt -------------------------------------------------------------------------------- /07_backup_and_restore_script/list/_old/backup_restore_list_2018-10-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/list/_old/backup_restore_list_2018-10-05.txt -------------------------------------------------------------------------------- /07_backup_and_restore_script/list/_old/backup_restore_list_2019-09-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/list/_old/backup_restore_list_2019-09-05.txt -------------------------------------------------------------------------------- /07_backup_and_restore_script/list/_old/backup_restore_list_2019-10-20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/list/_old/backup_restore_list_2019-10-20.txt -------------------------------------------------------------------------------- /07_backup_and_restore_script/list/backup_restore_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/list/backup_restore_list.txt -------------------------------------------------------------------------------- /07_backup_and_restore_script/permissions/ownerships_and_permissions_restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/permissions/ownerships_and_permissions_restore.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/profiles/backup_profile_example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/profiles/backup_profile_example.conf -------------------------------------------------------------------------------- /07_backup_and_restore_script/run_backup_script.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/run_backup_script.command -------------------------------------------------------------------------------- /07_backup_and_restore_script/run_restore_script.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/run_restore_script.command -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/.DS_Store -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/old/unarchive_tar_gz.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/old/unarchive_tar_gz.app/Contents/Info.plist -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/old/unarchive_tar_gz.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/old/unarchive_tar_gz.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/old/unarchive_tar_gz.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/old/unarchive_tar_gz.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/old/unarchive_tar_gz.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/old/unarchive_tar_gz.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/old/unarchive_tar_gz.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/old/unarchive_tar_gz.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/old/unarchive_tar_gz.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/old/unarchive_tar_gz.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/old/unarchive_tar_gz.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/old/unarchive_tar_gz.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/old/unarchive_tar_gz.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/old/unarchive_tar_gz_split.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/old/unarchive_tar_gz_split.app/Contents/Info.plist -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/old/unarchive_tar_gz_split.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/old/unarchive_tar_gz_split.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/old/unarchive_tar_gz_split.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/old/unarchive_tar_gz_split.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/old/unarchive_tar_gz_split.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/old/unarchive_tar_gz_split.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/old/unarchive_tar_gz_split.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/old/unarchive_tar_gz_split.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/old/unarchive_tar_gz_split.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/old/unarchive_tar_gz_split.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/old/unarchive_tar_gz_split.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/old/unarchive_tar_gz_split.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/old/unarchive_tar_gz_split.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/_readme.txt -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/app/_readme.txt: -------------------------------------------------------------------------------- 1 | open with /Applications/Automator.app -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/app/decrypt_finder_input_gpg_progress.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/app/decrypt_finder_input_gpg_progress.app/Contents/Info.plist -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/app/decrypt_finder_input_gpg_progress.app/Contents/MacOS/Application Stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/app/decrypt_finder_input_gpg_progress.app/Contents/MacOS/Application Stub -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/app/decrypt_finder_input_gpg_progress.app/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/app/decrypt_finder_input_gpg_progress.app/Contents/document.wflow -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/app/decrypt_finder_input_gpg_progress.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/app/unarchive_finder_input_tar_gz_gpg_preserve_permissions_progress.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/build/build.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/decrypt_finder_input_gpg_progress.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/decrypt_finder_input_gpg_progress.dmg -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/dmg/decrypt_finder_input_gpg_progress/app/decrypt_finder_input_gpg_progress.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/dmg/decrypt_finder_input_gpg_progress/install_script/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/dmg/decrypt_finder_input_gpg_progress/install_script/install.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/dmg/decrypt_finder_input_gpg_progress/run_to_install.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/dmg/decrypt_finder_input_gpg_progress/run_to_install.command -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/dmg/decrypt_finder_input_gpg_progress/scpt/install.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/dmg/decrypt_finder_input_gpg_progress/scpt/install.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/dmg/unarchive_finder_input_tar_gz_gpg_preserve_permissions_progress/app/unarchive_finder_input_tar_gz_gpg_preserve_permissions_progress.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/_macos_10/decrypt_finder_input_gpg_progress.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/_macos_10/decrypt_finder_input_gpg_progress.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/_macos_10/gpg.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/_macos_10/gpg.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/create_icns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/create_icns.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/decrypt_finder_input_gpg_progress.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/decrypt_finder_input_gpg_progress.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/document.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/document.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/gpg.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/gpg.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/gpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/gpg.png -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/icon_set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/icon_set.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/macos_11_icon_gpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/macos_11_icon_gpg.png -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/unarchive_finder_input_tar_gz_gpg_preserve_permissions_progress.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/icons/unarchive_finder_input_tar_gz_gpg_preserve_permissions_progress.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_finder_input/unarchive_finder_input_tar_gz_gpg_preserve_permissions_progress.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_finder_input/unarchive_finder_input_tar_gz_gpg_preserve_permissions_progress.dmg -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_gpg_perms_progress.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_gpg_perms_progress.app/Contents/Info.plist -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_gpg_perms_progress.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_gpg_perms_progress.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_gpg_perms_progress.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_gpg_perms_progress.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_gpg_perms_progress.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_gpg_perms_progress.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_gpg_perms_progress.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_gpg_perms_progress.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_gpg_perms_progress.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_gpg_perms_progress.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_gpg_perms_progress.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_gpg_perms_progress.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_gpg_perms_progress.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_gpg_perms_progress_all_in_folder.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_gpg_perms_progress_all_in_folder.command -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_onboard.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_onboard.app/Contents/Info.plist -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_onboard.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_onboard.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_onboard.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_onboard.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_onboard.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_onboard.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_onboard.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_onboard.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_onboard.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_onboard.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_onboard.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_onboard.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_onboard.app/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_onboard.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_onboard.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_progress.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_progress.app/Contents/Info.plist -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_progress.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_progress.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_progress.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_progress.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_progress.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_progress.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_progress.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_progress.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_progress.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_progress.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_progress.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_progress.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_perms_progress.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/unarchive/unarchive_tar_gz_progress_all_in_folder.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/unarchive/unarchive_tar_gz_progress_all_in_folder.command -------------------------------------------------------------------------------- /07_backup_and_restore_script/update_homebrew/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/update_homebrew/.DS_Store -------------------------------------------------------------------------------- /07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Contents/Info.plist -------------------------------------------------------------------------------- /07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Contents/custom_files/brew_casks_update.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Contents/custom_files/brew_casks_update.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Contents/custom_files/brew_casks_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Contents/custom_files/brew_casks_update.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/update_homebrew/brew_casks_update.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07_backup_and_restore_script/update_hosts/hosts_file_generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/update_hosts/hosts_file_generator.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/update_macos/updates_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/update_macos/updates_macos.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/.DS_Store -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/app/utm_backup.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/app/utm_backup.app/Contents/Info.plist -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/app/utm_backup.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/app/utm_backup.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/app/utm_backup.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/app/utm_backup.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/app/utm_backup.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/app/utm_backup.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/app/utm_backup.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/app/utm_backup.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/app/utm_backup.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/app/utm_backup.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/app/utm_backup.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/app/utm_backup.app/Contents/custom_files/utm_backup.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/app/utm_backup.app/Contents/custom_files/utm_backup.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/app/utm_backup.app/Contents/custom_files/utm_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/app/utm_backup.app/Contents/custom_files/utm_backup.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/app/utm_backup.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/ask_save_to_utm.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/ask_save_to_utm.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/build/build.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/icons/create_icns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/icons/create_icns.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/icons/icon_set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/icons/icon_set.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/icons/macos_11_icon_utm_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/icons/macos_11_icon_utm_backup.png -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/icons/utm_backup.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/icons/utm_backup.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/scpt/utm_backup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/scpt/utm_backup.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/shell_script/utm_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/shell_script/utm_backup.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/utm_backup.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/utm_backup.app/Contents/Info.plist -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/utm_backup.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/utm_backup.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/utm_backup.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/utm_backup.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/utm_backup.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/utm_backup.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/utm_backup.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/utm_backup.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/utm_backup.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/utm_backup.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/utm_backup.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/utm_backup.app/Contents/custom_files/utm_backup.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/utm_backup.app/Contents/custom_files/utm_backup.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/utm_backup.app/Contents/custom_files/utm_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/utm_backup/utm_backup.app/Contents/custom_files/utm_backup.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/utm_backup/utm_backup.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/.DS_Store -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Contents/Info.plist -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Contents/custom_files/virtualbox_backup.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Contents/custom_files/virtualbox_backup.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Contents/custom_files/virtualbox_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Contents/custom_files/virtualbox_backup.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/app/virtualbox_backup.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/ask_save_to_vbox.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/ask_save_to_vbox.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/build/build.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/icons/_macos_10/virtualbox_backup_macos_10.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/icons/_macos_10/virtualbox_backup_macos_10.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/icons/_macos_10/virtualbox_backup_macos_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/icons/_macos_10/virtualbox_backup_macos_10.png -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/icons/create_icns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/icons/create_icns.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/icons/icon_set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/icons/icon_set.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/icons/macos_11_icon_vbox_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/icons/macos_11_icon_vbox_backup.png -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/icons/virtualbox_backup.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/icons/virtualbox_backup.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/scpt/virtualbox_backup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/scpt/virtualbox_backup.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/shell_script/virtualbox_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/shell_script/virtualbox_backup.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Contents/Info.plist -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Contents/custom_files/virtualbox_backup.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Contents/custom_files/virtualbox_backup.icns -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Contents/custom_files/virtualbox_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Contents/custom_files/virtualbox_backup.sh -------------------------------------------------------------------------------- /07_backup_and_restore_script/vbox_backup/virtualbox_backup.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /08_java_6/8_java6_runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/08_java_6/8_java6_runtime.sh -------------------------------------------------------------------------------- /09_launchd/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/.DS_Store -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/.DS_Store -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/0_example_root/install_example_root_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/0_example_root/install_example_root_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/0_example_root/launchd_and_script/checking_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/0_example_root/launchd_and_script/checking_installation.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/0_example_root/launchd_and_script/com.example_root.show.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/0_example_root/launchd_and_script/com.example_root.show.plist -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/0_example_root/launchd_and_script/example_root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/0_example_root/launchd_and_script/example_root.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/0_example_root/launchd_and_script/uninstall_example_root_and_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/0_example_root/launchd_and_script/uninstall_example_root_and_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/1_hosts_file/install_hosts_file_generator_and_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/1_hosts_file/install_hosts_file_generator_and_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/1_hosts_file/launchd_and_script/checking_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/1_hosts_file/launchd_and_script/checking_installation.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/1_hosts_file/launchd_and_script/com.hostsfile.install_update.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/1_hosts_file/launchd_and_script/com.hostsfile.install_update.plist -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/1_hosts_file/launchd_and_script/hosts_file_generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/1_hosts_file/launchd_and_script/hosts_file_generator.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/1_hosts_file/launchd_and_script/uninstall_hosts_file_generator_and_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/1_hosts_file/launchd_and_script/uninstall_hosts_file_generator_and_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/3_network_select/install_network_select_and_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/3_network_select/install_network_select_and_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/3_network_select/launchd_and_script/_old/network_select_profiles_without_ethernet_device.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/3_network_select/launchd_and_script/_old/network_select_profiles_without_ethernet_device.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/3_network_select/launchd_and_script/checking_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/3_network_select/launchd_and_script/checking_installation.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/3_network_select/launchd_and_script/com.network.select.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/3_network_select/launchd_and_script/com.network.select.plist -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/3_network_select/launchd_and_script/network_select.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/3_network_select/launchd_and_script/network_select.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/3_network_select/launchd_and_script/uninstall_network_select_and_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/3_network_select/launchd_and_script/uninstall_network_select_and_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/install_clamav_monitor_and_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/install_clamav_monitor_and_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/checking_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/checking_installation.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_monitor.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/Info.plist -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/custom_files/clamav_scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/custom_files/clamav_scan.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/custom_files/clamav_scan_done.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/custom_files/clamav_scan_done.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/custom_files/clamav_scan_found.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/custom_files/clamav_scan_found.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/custom_files/clamav_scan_stopped.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Contents/custom_files/clamav_scan_stopped.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/app/clamav_scan.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/build/build.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/clamav_scan.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/clamav_scan.dmg -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/app/clamav_scan.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/app/clamav_scan.app/Contents/Info.plist -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/app/clamav_scan.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/app/clamav_scan.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/app/clamav_scan.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/app/clamav_scan.app/Contents/custom_files/clamav_scan_done.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/app/clamav_scan.app/Contents/custom_files/clamav_scan_done.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/app/clamav_scan.app/Contents/custom_files/clamav_scan_found.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/app/clamav_scan.app/Contents/custom_files/clamav_scan_found.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/app/clamav_scan.app/Contents/custom_files/clamav_scan_stopped.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/app/clamav_scan.app/Contents/custom_files/clamav_scan_stopped.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/app/clamav_scan.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/install_script/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/install_script/install.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/run_to_install.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/run_to_install.command -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/scpt/install.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/dmg/clamav_scan/scpt/install.scpt -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/done/clamav_scan_done.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/done/clamav_scan_done.app/Contents/Info.plist -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/done/clamav_scan_done.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/done/clamav_scan_done.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/done/clamav_scan_done.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/done/clamav_scan_done.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/done/clamav_scan_done.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/done/clamav_scan_done.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/found/clamav_scan_found.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/found/clamav_scan_found.app/Contents/Info.plist -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/found/clamav_scan_found.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/found/clamav_scan_found.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/found/clamav_scan_found.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/found/clamav_scan_found.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/icons/_macos_10/clamav_icon_250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/icons/_macos_10/clamav_icon_250.png -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/icons/_macos_10/clamav_icon_350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/icons/_macos_10/clamav_icon_350.png -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/icons/_macos_10/clamav_icon_macos_10.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/icons/_macos_10/clamav_icon_macos_10.icns -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/icons/clamav_icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/icons/clamav_icon.icns -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/icons/create_icns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/icons/create_icns.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/icons/icon_set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/icons/icon_set.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/icons/macos_11_icon_clamav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/icons/macos_11_icon_clamav.png -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/scpt/clamav_scan.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/scpt/clamav_scan.scpt -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/scpt/clamav_scan_done.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/scpt/clamav_scan_done.scpt -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/scpt/clamav_scan_found.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/scpt/clamav_scan_found.scpt -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/scpt/clamav_scan_stopped.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/scpt/clamav_scan_stopped.scpt -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/shell_script/clamav_scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/shell_script/clamav_scan.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/stopped/clamav_scan_stopped.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/stopped/clamav_scan_stopped.app/Contents/Info.plist -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/stopped/clamav_scan_stopped.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/stopped/clamav_scan_stopped.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/stopped/clamav_scan_stopped.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/clamav_scan/stopped/clamav_scan_stopped.app/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/com.clamav.monitor.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/com.clamav.monitor.plist -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/uninstall_clamav_monitor_and_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/4_clamav_monitor/launchd_and_script/uninstall_clamav_monitor_and_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/5_run_on_boot_general/install_run_on_boot_and_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/5_run_on_boot_general/install_run_on_boot_and_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/5_run_on_boot_general/launchd_and_script/checking_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/5_run_on_boot_general/launchd_and_script/checking_installation.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/5_run_on_boot_general/launchd_and_script/com.run_on.boot.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/5_run_on_boot_general/launchd_and_script/com.run_on.boot.plist -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/5_run_on_boot_general/launchd_and_script/run_on_boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/5_run_on_boot_general/launchd_and_script/run_on_boot.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/root/5_run_on_boot_general/launchd_and_script/uninstall_run_on_boot_and_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/root/5_run_on_boot_general/launchd_and_script/uninstall_run_on_boot_and_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/0_example_user/install_example_user_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/0_example_user/install_example_user_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/0_example_user/launchd_and_script/checking_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/0_example_user/launchd_and_script/checking_installation.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/0_example_user/launchd_and_script/com.example_user.show.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/0_example_user/launchd_and_script/com.example_user.show.plist -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/0_example_user/launchd_and_script/example_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/0_example_user/launchd_and_script/example_user.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/0_example_user/launchd_and_script/uninstall_example_user_and_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/0_example_user/launchd_and_script/uninstall_example_user_and_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/1_screen_resolution/install_screen_resolution_user_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/1_screen_resolution/install_screen_resolution_user_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/1_screen_resolution/launchd_and_script/checking_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/1_screen_resolution/launchd_and_script/checking_installation.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/1_screen_resolution/launchd_and_script/com.screen_resolution.set.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/1_screen_resolution/launchd_and_script/com.screen_resolution.set.plist -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/1_screen_resolution/launchd_and_script/screen_resolution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/1_screen_resolution/launchd_and_script/screen_resolution.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/1_screen_resolution/launchd_and_script/uninstall_screen_resolution_and_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/1_screen_resolution/launchd_and_script/uninstall_screen_resolution_and_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/2_reminders/install_reminders_user_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/2_reminders/install_reminders_user_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/2_reminders/launchd_and_script/checking_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/2_reminders/launchd_and_script/checking_installation.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/2_reminders/launchd_and_script/com.reminders.set.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/2_reminders/launchd_and_script/com.reminders.set.plist -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/2_reminders/launchd_and_script/reminders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/2_reminders/launchd_and_script/reminders.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/2_reminders/launchd_and_script/uninstall_reminders_and_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/2_reminders/launchd_and_script/uninstall_reminders_and_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/3_wifi_reconnect/install_wifi_reconnect_user_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/3_wifi_reconnect/install_wifi_reconnect_user_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/3_wifi_reconnect/launchd_and_script/checking_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/3_wifi_reconnect/launchd_and_script/checking_installation.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/3_wifi_reconnect/launchd_and_script/com.wifi_reconnect.set.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/3_wifi_reconnect/launchd_and_script/com.wifi_reconnect.set.plist -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/3_wifi_reconnect/launchd_and_script/uninstall_wifi_reconnect_and_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/3_wifi_reconnect/launchd_and_script/uninstall_wifi_reconnect_and_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9b_run_on_boot/user/3_wifi_reconnect/launchd_and_script/wifi_reconnect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9b_run_on_boot/user/3_wifi_reconnect/launchd_and_script/wifi_reconnect.sh -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/_old/install_run_on_login_reminders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/_old/install_run_on_login_reminders.sh -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/_old/run_on_login_reminders.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/_old/run_on_login_reminders.app/Contents/Info.plist -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/_old/run_on_login_reminders.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/_old/run_on_login_reminders.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/_old/run_on_login_reminders.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/_old/run_on_login_reminders.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/_old/run_on_login_reminders.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/_old/run_on_login_reminders.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/_old/run_on_login_reminders.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/_old/run_on_login_reminders.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/_old/run_on_login_reminders.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/_old/run_on_login_reminders.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/_old/run_on_login_reminders.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/_old/run_on_login_reminders.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/_old/run_on_login_reminders.scpt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/_old/run_on_network_change_login.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/_old/run_on_network_change_login.app/Contents/Info.plist -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/_old/run_on_network_change_login.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/_old/run_on_network_change_login.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/_old/run_on_network_change_login.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/_old/run_on_network_change_login.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/_old/run_on_network_change_login.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/_old/run_on_network_change_login.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/_old/run_on_network_change_login.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/_old/run_on_network_change_login.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/_old/run_on_network_change_login.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/_old/run_on_network_change_login.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/_old/run_on_network_change_login.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/_old/run_on_network_change_login.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/_old/run_on_network_change_login.scpt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/_old/run_on_login_wireguard.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/_old/run_on_login_wireguard.scpt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_signal.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_signal.app/Contents/Info.plist -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_signal.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_signal.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_signal.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_signal.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_signal.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_signal.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_signal.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_signal.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_signal.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_signal.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_signal.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_signal.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_signal.app/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_signal.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_signal.scpt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_telephone.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_telephone.app/Contents/Info.plist -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_telephone.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_telephone.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_telephone.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_telephone.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_telephone.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_telephone.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_telephone.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_telephone.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_telephone.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_telephone.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_telephone.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_telephone.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_telephone.app/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_telephone.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_telephone.scpt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_tradingview.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_tradingview.app/Contents/Info.plist -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_tradingview.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_tradingview.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_tradingview.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_tradingview.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_tradingview.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_tradingview.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_tradingview.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_tradingview.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_tradingview.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_tradingview.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_tradingview.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_tradingview.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_tradingview.scpt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_virusscannerplus.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_virusscannerplus.app/Contents/Info.plist -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_virusscannerplus.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_virusscannerplus.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_virusscannerplus.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_virusscannerplus.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_virusscannerplus.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_virusscannerplus.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_virusscannerplus.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_virusscannerplus.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_virusscannerplus.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_virusscannerplus.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_virusscannerplus.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_virusscannerplus.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_virusscannerplus.scpt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_whatsapp.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_whatsapp.app/Contents/Info.plist -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_whatsapp.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_whatsapp.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_whatsapp.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_whatsapp.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_whatsapp.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_whatsapp.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_whatsapp.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_whatsapp.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_whatsapp.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_whatsapp.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_whatsapp.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_whatsapp.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_whatsapp.app/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_whatsapp.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_files/run_on_login_whatsapp.scpt -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_run_on_login_signal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_run_on_login_signal.sh -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_run_on_login_telephone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_run_on_login_telephone.sh -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_run_on_login_tradingview.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_run_on_login_tradingview.sh -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_run_on_login_virusscannerplus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_run_on_login_virusscannerplus.sh -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_run_on_login_whatsapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_run_on_login_whatsapp.sh -------------------------------------------------------------------------------- /09_launchd/9d_run_on_login/autostart_apps/install_run_on_login_wireguard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9d_run_on_login/autostart_apps/install_run_on_login_wireguard.sh -------------------------------------------------------------------------------- /09_launchd/9e_run_on_shutdown/install_script_run_on_shutdown_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9e_run_on_shutdown/install_script_run_on_shutdown_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/9e_run_on_shutdown/launchd_and_script/checking_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9e_run_on_shutdown/launchd_and_script/checking_installation.sh -------------------------------------------------------------------------------- /09_launchd/9e_run_on_shutdown/launchd_and_script/com.run_on.shutdown.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9e_run_on_shutdown/launchd_and_script/com.run_on.shutdown.plist -------------------------------------------------------------------------------- /09_launchd/9e_run_on_shutdown/launchd_and_script/run_on_shutdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9e_run_on_shutdown/launchd_and_script/run_on_shutdown.sh -------------------------------------------------------------------------------- /09_launchd/9e_run_on_shutdown/launchd_and_script/uninstall_run_on_shutdown_and_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/9e_run_on_shutdown/launchd_and_script/uninstall_run_on_shutdown_and_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/_deprecated/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_deprecated/.DS_Store -------------------------------------------------------------------------------- /09_launchd/_deprecated/9b_run_on_boot/2_cert_install_update/install_cert_install_update_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_deprecated/9b_run_on_boot/2_cert_install_update/install_cert_install_update_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/_deprecated/9b_run_on_boot/2_cert_install_update/launchd_and_script/cert_install_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_deprecated/9b_run_on_boot/2_cert_install_update/launchd_and_script/cert_install_update.sh -------------------------------------------------------------------------------- /09_launchd/_deprecated/9b_run_on_boot/2_cert_install_update/launchd_and_script/checking_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_deprecated/9b_run_on_boot/2_cert_install_update/launchd_and_script/checking_installation.sh -------------------------------------------------------------------------------- /09_launchd/_deprecated/9b_run_on_boot/2_cert_install_update/launchd_and_script/com.cert.install_update.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_deprecated/9b_run_on_boot/2_cert_install_update/launchd_and_script/com.cert.install_update.plist -------------------------------------------------------------------------------- /09_launchd/_deprecated/9b_run_on_boot/2_cert_install_update/launchd_and_script/uninstall_cert_install_update_and_launchdservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_deprecated/9b_run_on_boot/2_cert_install_update/launchd_and_script/uninstall_cert_install_update_and_launchdservice.sh -------------------------------------------------------------------------------- /09_launchd/_deprecated/9c_run_on_logout/install_files/run_on_logout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_deprecated/9c_run_on_logout/install_files/run_on_logout.sh -------------------------------------------------------------------------------- /09_launchd/_deprecated/9c_run_on_logout/install_run_on_logout_hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_deprecated/9c_run_on_logout/install_run_on_logout_hook.sh -------------------------------------------------------------------------------- /09_launchd/_deprecated/9d_run_on_login/system/install_files/run_on_login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_deprecated/9d_run_on_login/system/install_files/run_on_login.sh -------------------------------------------------------------------------------- /09_launchd/_deprecated/9d_run_on_login/system/install_run_on_login_hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_deprecated/9d_run_on_login/system/install_run_on_login_hook.sh -------------------------------------------------------------------------------- /09_launchd/_deprecated/deprecation_of_login_and_logout_scripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_deprecated/deprecation_of_login_and_logout_scripts.txt -------------------------------------------------------------------------------- /09_launchd/_not_in_use/9a_run_on_network_change/9a_install_run_on_network_change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_not_in_use/9a_run_on_network_change/9a_install_run_on_network_change.sh -------------------------------------------------------------------------------- /09_launchd/_not_in_use/9a_run_on_network_change/install_files/com.run_script_on_network_change.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_not_in_use/9a_run_on_network_change/install_files/com.run_script_on_network_change.plist -------------------------------------------------------------------------------- /09_launchd/_not_in_use/9a_run_on_network_change/install_files/run_on_network_change.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_not_in_use/9a_run_on_network_change/install_files/run_on_network_change.app/Contents/Info.plist -------------------------------------------------------------------------------- /09_launchd/_not_in_use/9a_run_on_network_change/install_files/run_on_network_change.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_not_in_use/9a_run_on_network_change/install_files/run_on_network_change.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /09_launchd/_not_in_use/9a_run_on_network_change/install_files/run_on_network_change.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /09_launchd/_not_in_use/9a_run_on_network_change/install_files/run_on_network_change.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_not_in_use/9a_run_on_network_change/install_files/run_on_network_change.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /09_launchd/_not_in_use/9a_run_on_network_change/install_files/run_on_network_change.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_not_in_use/9a_run_on_network_change/install_files/run_on_network_change.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /09_launchd/_not_in_use/9a_run_on_network_change/install_files/run_on_network_change.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_not_in_use/9a_run_on_network_change/install_files/run_on_network_change.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /09_launchd/_not_in_use/9a_run_on_network_change/install_files/run_on_network_change.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_not_in_use/9a_run_on_network_change/install_files/run_on_network_change.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /09_launchd/_not_in_use/9a_run_on_network_change/install_files/run_on_network_change.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/09_launchd/_not_in_use/9a_run_on_network_change/install_files/run_on_network_change.scpt -------------------------------------------------------------------------------- /10_dock/10_dock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/10_dock/10_dock.sh -------------------------------------------------------------------------------- /10_dock/profiles/dock_profile_example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/10_dock/profiles/dock_profile_example.conf -------------------------------------------------------------------------------- /11_system_and_app_preferences/11a_system_preferences_privacy_sqlite_10_14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11a_system_preferences_privacy_sqlite_10_14.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11a_system_preferences_privacy_sqlite_10_15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11a_system_preferences_privacy_sqlite_10_15.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11a_system_preferences_privacy_sqlite_11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11a_system_preferences_privacy_sqlite_11.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11a_system_preferences_privacy_sqlite_12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11a_system_preferences_privacy_sqlite_12.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11a_system_preferences_privacy_sqlite_13.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11a_system_preferences_privacy_sqlite_13.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11a_system_preferences_privacy_sqlite_14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11a_system_preferences_privacy_sqlite_14.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11a_system_preferences_privacy_sqlite_15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11a_system_preferences_privacy_sqlite_15.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11b_safari_extensions_cookies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11b_safari_extensions_cookies.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11c_macos_preferences_10_14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11c_macos_preferences_10_14.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11c_macos_preferences_10_15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11c_macos_preferences_10_15.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11c_macos_preferences_11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11c_macos_preferences_11.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11c_macos_preferences_12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11c_macos_preferences_12.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11c_macos_preferences_13.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11c_macos_preferences_13.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11c_macos_preferences_14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11c_macos_preferences_14.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11c_macos_preferences_15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11c_macos_preferences_15.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11d_system_preferences_spotlight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11d_system_preferences_spotlight.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11e_defaults_open_with.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11e_defaults_open_with.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11f_finder_sidebar_10_14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11f_finder_sidebar_10_14.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11f_finder_sidebar_10_15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11f_finder_sidebar_10_15.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11f_finder_sidebar_11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11f_finder_sidebar_11.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11f_finder_sidebar_12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11f_finder_sidebar_12.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11f_finder_sidebar_13.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11f_finder_sidebar_13.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11f_finder_sidebar_14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11f_finder_sidebar_14.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11f_finder_sidebar_15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11f_finder_sidebar_15.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11f_finder_sidebar_python_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11f_finder_sidebar_python_wrapper.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11g_finder_favorites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11g_finder_favorites.py -------------------------------------------------------------------------------- /11_system_and_app_preferences/11g_finder_favorites_applescript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11g_finder_favorites_applescript.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11g_finder_favorites_python_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11g_finder_favorites_python_wrapper.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11h_notification_center_10_14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11h_notification_center_10_14.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11h_notification_center_10_15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11h_notification_center_10_15.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11h_notification_center_11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11h_notification_center_11.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11h_notification_center_12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11h_notification_center_12.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11h_notification_center_13.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11h_notification_center_13.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11h_notification_center_14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11h_notification_center_14.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11h_notification_center_15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11h_notification_center_15.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11i_reset_calendar_contacts_reminders_data_10_14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11i_reset_calendar_contacts_reminders_data_10_14.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11i_reset_calendar_contacts_reminders_data_10_15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11i_reset_calendar_contacts_reminders_data_10_15.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11i_reset_calendar_contacts_reminders_data_11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11i_reset_calendar_contacts_reminders_data_11.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11i_reset_calendar_contacts_reminders_data_12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11i_reset_calendar_contacts_reminders_data_12.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11i_reset_calendar_contacts_reminders_data_13.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11i_reset_calendar_contacts_reminders_data_13.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11i_reset_calendar_contacts_reminders_data_14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11i_reset_calendar_contacts_reminders_data_14.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11i_reset_calendar_contacts_reminders_data_15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11i_reset_calendar_contacts_reminders_data_15.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11j_set_calendar_alarms_10_14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11j_set_calendar_alarms_10_14.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11j_set_calendar_alarms_10_15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11j_set_calendar_alarms_10_15.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11j_set_calendar_alarms_11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11j_set_calendar_alarms_11.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11j_set_calendar_alarms_12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11j_set_calendar_alarms_12.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11j_set_calendar_alarms_13.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11j_set_calendar_alarms_13.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11j_set_calendar_alarms_14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11j_set_calendar_alarms_14.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11j_set_calendar_alarms_15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11j_set_calendar_alarms_15.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/11k_third_party_app_preferences.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/11k_third_party_app_preferences.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/.DS_Store -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/11j_set_calendar_alarms_10_15_old_account_groups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/11j_set_calendar_alarms_10_15_old_account_groups.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_13_high_sierra/11a_osx_preferences_privacy_sqlite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_13_high_sierra/11a_osx_preferences_privacy_sqlite.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_13_high_sierra/11f_finder_sidebar_10_13.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_13_high_sierra/11f_finder_sidebar_10_13.scpt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_13_high_sierra/11h_notification_center_high_sierra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_13_high_sierra/11h_notification_center_high_sierra.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/11a_system_preferences_privacy_app_profiles_mojave_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/11a_system_preferences_privacy_app_profiles_mojave_all.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/11a_system_preferences_privacy_app_profiles_mojave_single_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/11a_system_preferences_privacy_app_profiles_mojave_single_app.sh -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Alfred 4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Alfred 4.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/BL Banking Launcher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/BL Banking Launcher.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Bartender 3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Bartender 3.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Commander One.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Commander One.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/EagleFiler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/EagleFiler.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Finder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Finder.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/GeburtstagsChecker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/GeburtstagsChecker.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/MacPass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/MacPass.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Mail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Mail.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Ondesoft AudioBook Converter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Ondesoft AudioBook Converter.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Overflow 3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Overflow 3.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/PasswordWallet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/PasswordWallet.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Script Editor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Script Editor.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/System Events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/System Events.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/System Preferences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/System Preferences.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Terminal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/Terminal.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/VNC Viewer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/VNC Viewer.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/VirtualBox Menulet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/VirtualBox Menulet.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/VirtualBox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/VirtualBox.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/XtraFinder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/XtraFinder.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/backup_files_tar_gz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/backup_files_tar_gz.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/brew_casks_update.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/brew_casks_update.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/decrypt_finder_input_gpg_progress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/decrypt_finder_input_gpg_progress.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/gui_apps_backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/gui_apps_backup.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/iStat Menus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/iStat Menus.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/iTerm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/iTerm.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/iTunes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/iTunes.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/pdf_200dpi_shrink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/pdf_200dpi_shrink.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/run_on_login_signal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/run_on_login_signal.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/run_on_login_whatsapp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/run_on_login_whatsapp.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/unarchive_finder_input_tar_gz_gpg_preserve_permissions_progress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/unarchive_finder_input_tar_gz_gpg_preserve_permissions_progress.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/video_720p_h265_aac_shrink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/video_720p_h265_aac_shrink.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/virtualbox_backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/virtualbox_backup.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/witchdaemon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11a_app_profiles/witchdaemon.txt -------------------------------------------------------------------------------- /11_system_and_app_preferences/_old/_10_14_mojave/11f_finder_sidebar_10_14.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/11_system_and_app_preferences/_old/_10_14_mojave/11f_finder_sidebar_10_14.scpt -------------------------------------------------------------------------------- /12_licenses/12_restore_licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/12_licenses/12_restore_licenses.txt -------------------------------------------------------------------------------- /13_apple_mail_and_accounts/13a_migrate_internet_accounts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/13_apple_mail_and_accounts/13a_migrate_internet_accounts.sh -------------------------------------------------------------------------------- /13_apple_mail_and_accounts/13b_reset_mail_index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/13_apple_mail_and_accounts/13b_reset_mail_index.sh -------------------------------------------------------------------------------- /13_apple_mail_and_accounts/_old/accounts_mail_calendar_contacts_el_capitan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/13_apple_mail_and_accounts/_old/accounts_mail_calendar_contacts_el_capitan.txt -------------------------------------------------------------------------------- /13_apple_mail_and_accounts/_old/accounts_mail_calendar_contacts_sierra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/13_apple_mail_and_accounts/_old/accounts_mail_calendar_contacts_sierra.txt -------------------------------------------------------------------------------- /14_samba/14a_samba.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/14_samba/14a_samba.sh -------------------------------------------------------------------------------- /15_finalizations/15a_applications_manual_preferences_open.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/15_finalizations/15a_applications_manual_preferences_open.sh -------------------------------------------------------------------------------- /15_finalizations/15b_applications_preferences_manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/15_finalizations/15b_applications_preferences_manual.txt -------------------------------------------------------------------------------- /15_finalizations/15c_disable_siri_analytics_and_learning_10_14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/15_finalizations/15c_disable_siri_analytics_and_learning_10_14.sh -------------------------------------------------------------------------------- /15_finalizations/15c_disable_siri_analytics_and_learning_10_15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/15_finalizations/15c_disable_siri_analytics_and_learning_10_15.sh -------------------------------------------------------------------------------- /15_finalizations/15c_disable_siri_analytics_and_learning_11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/15_finalizations/15c_disable_siri_analytics_and_learning_11.sh -------------------------------------------------------------------------------- /15_finalizations/15c_disable_siri_analytics_and_learning_12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/15_finalizations/15c_disable_siri_analytics_and_learning_12.sh -------------------------------------------------------------------------------- /15_finalizations/15c_disable_siri_analytics_and_learning_13.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/15_finalizations/15c_disable_siri_analytics_and_learning_13.sh -------------------------------------------------------------------------------- /15_finalizations/15c_disable_siri_analytics_and_learning_14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/15_finalizations/15c_disable_siri_analytics_and_learning_14.sh -------------------------------------------------------------------------------- /15_finalizations/15c_disable_siri_analytics_and_learning_15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/15_finalizations/15c_disable_siri_analytics_and_learning_15.sh -------------------------------------------------------------------------------- /15_finalizations/15d_firefox_hardening.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/15_finalizations/15d_firefox_hardening.sh -------------------------------------------------------------------------------- /15_finalizations/15e_final_steps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/15_finalizations/15e_final_steps.txt -------------------------------------------------------------------------------- /15_finalizations/15f_remove_dock_notifications.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/15_finalizations/15f_remove_dock_notifications.sh -------------------------------------------------------------------------------- /15_finalizations/_old/15b_applications_preferences_manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/15_finalizations/_old/15b_applications_preferences_manual.txt -------------------------------------------------------------------------------- /15_finalizations/_old/15e_final_steps_including_macos11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/15_finalizations/_old/15e_final_steps_including_macos11.txt -------------------------------------------------------------------------------- /16_seed_update_configuration/16_seed_configuration_software_update.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/16_seed_update_configuration/16_seed_configuration_software_update.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/README.md -------------------------------------------------------------------------------- /_batch_run/_old/batch_script_part2b.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/_batch_run/_old/batch_script_part2b.command -------------------------------------------------------------------------------- /_batch_run/_old/batch_script_part3.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/_batch_run/_old/batch_script_part3.command -------------------------------------------------------------------------------- /_batch_run/batch_script_part1.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/_batch_run/batch_script_part1.command -------------------------------------------------------------------------------- /_batch_run/batch_script_part2a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/_batch_run/batch_script_part2a.txt -------------------------------------------------------------------------------- /_batch_run/batch_script_part2b.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/_batch_run/batch_script_part2b.command -------------------------------------------------------------------------------- /_batch_run/batch_script_part3.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/_batch_run/batch_script_part3.command -------------------------------------------------------------------------------- /_config_file/install_config_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/_config_file/install_config_file.sh -------------------------------------------------------------------------------- /_config_file/script_start_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/_config_file/script_start_example.sh -------------------------------------------------------------------------------- /_config_file/shellscriptsrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/_config_file/shellscriptsrc.sh -------------------------------------------------------------------------------- /_mobileconfig/install_mobileconfig_profiles_12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/_mobileconfig/install_mobileconfig_profiles_12.sh -------------------------------------------------------------------------------- /_mobileconfig/install_mobileconfig_profiles_13.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/_mobileconfig/install_mobileconfig_profiles_13.sh -------------------------------------------------------------------------------- /_mobileconfig/install_mobileconfig_profiles_14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/_mobileconfig/install_mobileconfig_profiles_14.sh -------------------------------------------------------------------------------- /_mobileconfig/install_profiles_13.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/_mobileconfig/install_profiles_13.scpt -------------------------------------------------------------------------------- /_mobileconfig/install_profiles_14.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/_mobileconfig/install_profiles_14.scpt -------------------------------------------------------------------------------- /_mobileconfig/mouseclick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/_mobileconfig/mouseclick -------------------------------------------------------------------------------- /_mobileconfig/mouseclick_double: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/_mobileconfig/mouseclick_double -------------------------------------------------------------------------------- /_user_profiles/scripts_profile_example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiiiecherle/osx_install_config/HEAD/_user_profiles/scripts_profile_example.conf --------------------------------------------------------------------------------