Skip to content

Commit

Permalink
Moved all recipes to a single folder for more control
Browse files Browse the repository at this point in the history
  • Loading branch information
lietu committed Nov 13, 2019
1 parent 2a40687 commit 7f3cf97
Show file tree
Hide file tree
Showing 30 changed files with 32 additions and 28 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Additionally these rules apply to everything contributed here:
- Try to stick to a max line length of 88 characters, unless absolutely necessary, also in recipe comments
- Follow the [Code of Conduct](./CODE_OF_CONDUCT.md)

Feel free to [send PRs](https://github.com/Lieturd/aperture-control-recipes/pull/new/master) to add files to `cmd-scripts`, `ps-scripts`, and `registry`. However, try to ensure the filename gives a good idea as to what it is for, and add a "plain English" explanation about it in the `README.md`. Additionally if there's any extra details you need to explain, e.g. about how to determine the correct values for some variables, do so in the file with clear instructions.
Feel free to [send PRs](https://github.com/Lieturd/aperture-control-recipes/pull/new/master) to add files to `recipes`. However, try to ensure the filename gives a good idea as to what it is for, and add a "plain English" explanation about it in the `README.md`. Additionally if there's any extra details you need to explain, e.g. about how to determine the correct values for some variables, do so in the file with clear instructions.

In PowerShell files you can include comments by prefixing the comments with `#`, so:

Expand Down
58 changes: 31 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,68 +4,71 @@ This repository is a collection of scripts you might want in your setup of [Aper

See [Contributing Guidelines](./CONTRIBUTING.md) and [Code of Conduct](./CODE_OF_CONDUCT.md).


## Bug reports and improvements

If you find any bugs or have improvement ideas in any of the scripts, please [file an issue](https://github.com/Lieturd/aperture-control-recipes/issues) or [create a Pull Request](https://github.com/Lieturd/aperture-control-recipes/pull/new/master).


## List of recipes

- Set up global Git Configuration
- [cmd-scripts/global-git-config.cmd](cmd-scripts/global-git-config.cmd)
- [recipes/global-git-config.cmd](recipes/global-git-config.cmd)
- Install or update Chocolatey
- [ps-scripts/install-chocolatey.ps1](ps-scripts/install-chocolatey.ps1)
- [recipes/install-chocolatey.ps1](recipes/install-chocolatey.ps1)
- Install a number of Chocolatey and Scoop packages at once
- [ps-scripts/install-packages.ps1](ps-scripts/install-packages.ps1)
- [recipes/install-packages.ps1](recipes/install-packages.ps1)
- Install or update Scoop
- [ps-scripts/install-scoop.ps1](ps-scripts/install-scoop.ps1)
- [recipes/install-scoop.ps1](recipes/install-scoop.ps1)

**Windows settings and tweaks**

- Disable Aero shake to minimize windows
- [registry/disable-aero-shake.reg](registry/disable-aero-shake.reg)
- [recipes/disable-aero-shake.reg](recipes/disable-aero-shake.reg)
- Disable automatic reboot for upgrades
- [cmd-scripts/disable-auto-reboot-for-updates.cmd](cmd-scripts/disable-auto-reboot-for-updates.cmd)
- [registry/disable-auto-reboot-for-updates.reg](registry/disable-auto-reboot-for-updates.cmd)
- [recipes/disable-auto-reboot-for-updates.cmd](recipes/disable-auto-reboot-for-updates.cmd)
- [recipes/disable-auto-reboot-for-updates.reg](recipes/disable-auto-reboot-for-updates.cmd)
- Disable automatic sleep and monitor timeouts
- [cmd-scripts/disable-automatic-sleep.cmd](cmd-scripts/disable-automatic-sleep.cmd)
- [recipes/disable-automatic-sleep.cmd](recipes/disable-automatic-sleep.cmd)
- Disable Autoplay dialogs
- [registry/disable-aero-shake.reg](registry/disable-aero-shake.reg)
- [recipes/disable-aero-shake.reg](recipes/disable-aero-shake.reg)
- Disable hibernation
- [cmd-scripts/disable-hibernation.cmd](cmd-scripts/disable-hibernation.cmd)
- [recipes/disable-hibernation.cmd](recipes/disable-hibernation.cmd)
- Disable Share Across Devices
- [registry/disable-share-across-devices.reg](registry/disable-share-across-devices.reg)
- [recipes/disable-share-across-devices.reg](recipes/disable-share-across-devices.reg)
- Disable Snap
- [registry/disable-snap.reg](registry/disable-snap.reg)
- [recipes/disable-snap.reg](recipes/disable-snap.reg)
- Disable Cortana and Bing searches in Start Menu
- [registry/disable-start-menu-cortana-and-bing.reg](registry/disable-start-menu-cortana-and-bing.reg)
- [recipes/disable-start-menu-cortana-and-bing.reg](recipes/disable-start-menu-cortana-and-bing.reg)
- Disable Tablet Mode
- [registry/disable-tablet-mode.reg](registry/disable-tablet-mode.reg)
- [recipes/disable-tablet-mode.reg](recipes/disable-tablet-mode.reg)
- Disable Timeline
- [registry/disable-timeline.reg](registry/disable-timeline.reg)
- [recipes/disable-timeline.reg](recipes/disable-timeline.reg)
- Allow enabling BitLocker without a TPM module
- [registry/enable-bitlocker-without-tpm.reg](registry/enable-bitlocker-without-tpm.reg)
- [recipes/enable-bitlocker-without-tpm.reg](recipes/enable-bitlocker-without-tpm.reg)
- Enable Dark Theme
- [registry/enable-dark-theme.reg](registry/enable-dark-theme.reg)
- [recipes/enable-dark-theme.reg](recipes/enable-dark-theme.reg)
- Enable Hyper-V and add user into Hyper-V Administrators
- [ps-scripts/enable-hyper-v.ps1](ps-scripts/enable-hyper-v.ps1)
- [recipes/enable-hyper-v.ps1](recipes/enable-hyper-v.ps1)
- Enhance Windows 10 Privacy by disabling a number of features
- [cmd-scripts/enhance-windows-10-privacy.cmd](cmd-scripts/enhance-windows-10-privacy.cmd)
- [recipes/enhance-windows-10-privacy.cmd](recipes/enhance-windows-10-privacy.cmd)
- Remove "Keyboard Preload" to try and avoid US English keyboard being added repeatedly
- [registry/remove-keyboard-preload.reg](registry/remove-keyboard-preload.reg)
- [recipes/remove-keyboard-preload.reg](recipes/remove-keyboard-preload.reg)
- Set persistent environment variables
- [ps-scripts/set-env-variables.ps1](ps-scripts/set-env-variables.ps1)
- [recipes/set-env-variables.ps1](recipes/set-env-variables.ps1)
- Create file associations from a filetype to given program
- [ps-scripts/set-file-associations.ps1](ps-scripts/set-file-associations.ps1)
- [recipes/set-file-associations.ps1](recipes/set-file-associations.ps1)
- Show file extension of known file types
- [registry/show-file-extension.reg](registry/show-file-extension.reg)
- [recipes/show-file-extension.reg](recipes/show-file-extension.reg)
- Show hidden and "protected system files"
- [registry/show-hidden-and-protected-files.reg](registry/show-hidden-and-protected-files.reg)
- [recipes/show-hidden-and-protected-files.reg](recipes/show-hidden-and-protected-files.reg)
- Tune Taskbar to remove Cortana, Task View, and Search, and disable showing on all monitors
- [registry/taskbar-tuning.reg](registry/taskbar-tuning.reg)
- [recipes/taskbar-tuning.reg](recipes/taskbar-tuning.reg)
- Update "Input Method Tips" to install only desired keyboard layouts
- [ps-scripts/update-input-method-tips.ps1](ps-scripts/update-input-method-tips.ps1)
- [recipes/update-input-method-tips.ps1](recipes/update-input-method-tips.ps1)
- Manipulate PATH - add, remove, and move items to the top/bottom of user and system-wide PATH
- [ps-scripts/manipulate-path.ps1](ps-scripts/manipulate-path.ps1)
- [recipes/manipulate-path.ps1](recipes/manipulate-path.ps1)


## How to make registry patches

Expand All @@ -89,6 +92,7 @@ Then open the two files in e.g. [WinMerge](https://winmerge.org) (tested to be a

Alternatively you can try to e.g. identify the changes via [Process Monitor](https://docs.microsoft.com/en-us/sysinternals/downloads/procmon) or other such tools, or check out guides on the internet for how to perform the changes in Regedit, follow them, and then export the relevant keys.


# License

Short answer: The contents of this repository are licensed with the BSD 3-clause -license.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 7f3cf97

Please sign in to comment.