-
-
Notifications
You must be signed in to change notification settings - Fork 555
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
45 changed files
with
289 additions
and
240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/playbook/Configuration/tweaks/misc/config-boot-description.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
title: Configure Boot Description | ||
description: Configures the boot description that you see in the Windows Boot Manager to say Atlas | ||
privilege: TrustedInstaller | ||
actions: | ||
- !run: | ||
exe: 'bcdedit' | ||
args: '/set description "AtlasOS 10"' | ||
builds: [ '!>=22000' ] | ||
- !run: | ||
exe: 'bcdedit' | ||
args: '/set description "AtlasOS 11"' | ||
builds: [ '>=22000' ] |
15 changes: 15 additions & 0 deletions
15
src/playbook/Configuration/tweaks/misc/delete-version-specific-files.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
title: Delete Windows-version Specific Tweaks | ||
description: Deletes Windows 10 or Windows 11-only tweaks in the Atlas folder, dependant on the Windows version | ||
privilege: TrustedInstaller | ||
actions: | ||
# Delete Windows 11-only tweaks | ||
- !file: {path: '%windir%\AtlasDesktop\3. Configuration\Background Apps', builds: [ '!>=22000' ]} | ||
- !file: {path: '%windir%\AtlasDesktop\3. Configuration\Power\Timer Resolution', builds: [ '!>=22000' ]} | ||
- !file: {path: '%windir%\AtlasDesktop\4. Optional Tweaks\File Explorer Customization\Compact View', builds: [ '!>=22000' ]} | ||
- !file: {path: '%windir%\AtlasDesktop\4. Optional Tweaks\File Explorer Customization\Gallery', builds: [ '!>=22000' ]} | ||
- !file: {path: '%windir%\AtlasDesktop\4. Optional Tweaks\Windows 11 Context Menu', builds: [ '!>=22000' ]} | ||
- !file: {path: '%windir%\AtlasModules\Tools\TimerResolution.exe', builds: [ '!>=22000' ]} | ||
|
||
# Delete Windows 10-only tweaks | ||
- !file: {path: '%windir%\AtlasDesktop\3. Configuration\4. Optional Tweaks\Volume Flyout', builds: [ '>=22000' ]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/playbook/Configuration/tweaks/qol/explorer/disable-gallery.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: Hide Gallery in File Explorer | ||
description: Hides the new 23H2 'Gallery' in File Explorer for viewing pictures | ||
privilege: TrustedInstaller | ||
builds: [ '>=22000' ] | ||
actions: | ||
- !registryValue: | ||
path: 'HKCU\SOFTWARE\Classes\CLSID\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}' | ||
value: 'System.IsPinnedToNameSpaceTree' | ||
data: '0' | ||
type: REG_DWORD |
11 changes: 11 additions & 0 deletions
11
src/playbook/Configuration/tweaks/qol/explorer/dont-show-office-files.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: Don't Show Office Files | ||
description: Don't show Office files in Quick Access (Home) | ||
privilege: TrustedInstaller | ||
builds: [ '>=22000' ] | ||
actions: | ||
- !registryValue: | ||
path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer' | ||
value: 'ShowCloudFilesInQuickAccess' | ||
data: '0' | ||
type: REG_DWORD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/playbook/Configuration/tweaks/qol/explorer/use-compact-mode.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: Use Compact Mode | ||
description: Sets compact mode in File Explorer | ||
privilege: TrustedInstaller | ||
builds: [ '>=22000' ] | ||
actions: | ||
- !registryValue: | ||
path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' | ||
value: 'UseCompactMode' | ||
data: '1' | ||
type: REG_DWORD |
22 changes: 22 additions & 0 deletions
22
src/playbook/Configuration/tweaks/qol/set-hidden-settings-pages.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
title: Set Hidden Pages | ||
description: Hides Settings pages that are either broken or unused | ||
privilege: TrustedInstaller | ||
actions: | ||
# https://learn.microsoft.com/en-us/windows/uwp/launch-resume/launch-settings-app | ||
|
||
# Windows 10 | ||
- !registryValue: | ||
path: 'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer' | ||
value: 'SettingsPageVisibility' | ||
data: 'hide:crossdevice;recovery;autoplay;usb;maps;maps-downloadmaps;findmydevice;privacy;privacy-speech;privacy-feedback;privacy-activityhistory;search-permissions;privacy-location;privacy-general;sync;printers;cortana-windowssearch;mobile-devices;mobile-devices-addphone;backup;' | ||
type: REG_SZ | ||
builds: [ '!>=22000' ] | ||
|
||
# Windows 11 | ||
- !registryValue: | ||
path: 'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer' | ||
value: 'SettingsPageVisibility' | ||
data: 'hide:crossdevice;recovery;autoplay;usb;maps;maps-downloadmaps;findmydevice;privacy;privacy-speech;privacy-feedback;privacy-activityhistory;search-permissions;privacy-location;privacy-general;sync;printers;cortana-windowssearch;mobile-devices;mobile-devices-addphone;family-group;deviceusage;home;' | ||
type: REG_SZ | ||
builds: [ '>=22000' ] |
16 changes: 16 additions & 0 deletions
16
src/playbook/Configuration/tweaks/qol/shell/no-recommendations-start-menu.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: Disable Recommendations in the Start Menu | ||
description: Do not show recommendations for tips, shortcuts, new apps, and more in the Start Menu | ||
privilege: TrustedInstaller | ||
builds: [ '>=22000' ] | ||
actions: | ||
- !registryValue: | ||
path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' | ||
value: 'Start_IrisRecommendations' | ||
data: '0' | ||
type: REG_DWORD | ||
- !registryValue: | ||
path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' | ||
value: 'Start_AccountNotifications' | ||
data: '0' | ||
type: REG_DWORD |
11 changes: 11 additions & 0 deletions
11
src/playbook/Configuration/tweaks/qol/shell/restore-old-context-menu.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: Restore Old Context Menu | ||
description: Restores the old context menu in Windows 11 | ||
privilege: TrustedInstaller | ||
builds: [ '>=22000' ] | ||
actions: | ||
- !registryValue: | ||
path: 'HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32' | ||
value: '' | ||
data: '' | ||
type: REG_SZ |
50 changes: 50 additions & 0 deletions
50
src/playbook/Configuration/tweaks/qol/shell/set-unpinned-notification-items.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
title: Disable Windows Chat | ||
description: Disables Windows Chat as it's not commonly used | ||
privilege: TrustedInstaller | ||
actions: | ||
# Windows 10 | ||
- !registryValue: | ||
path: 'HKCU\Control Panel\Quick Actions\Control Center\Unpinned' | ||
value: 'Microsoft.QuickAction.Connect' | ||
data: '' | ||
type: REG_NONE | ||
builds: [ '!>=22000' ] | ||
- !registryValue: | ||
path: 'HKCU\Control Panel\Quick Actions\Control Center\Unpinned' | ||
value: 'Microsoft.QuickAction.Location' | ||
data: '' | ||
type: REG_NONE | ||
builds: [ '!>=22000' ] | ||
- !registryValue: | ||
path: 'HKCU\Control Panel\Quick Actions\Control Center\Unpinned' | ||
value: 'Microsoft.QuickAction.ScreenClipping' | ||
data: '' | ||
type: REG_NONE | ||
builds: [ '!>=22000' ] | ||
- !registryValue: | ||
path: 'HKCU\Control Panel\Quick Actions\Control Center\QuickActionsStateCapture' | ||
value: 'Toggles' | ||
data: 'Toggles,Microsoft.QuickAction.BlueLightReduction:false,Microsoft.QuickAction.AllSettings:false,Microsoft.QuickAction.Project:false' | ||
type: REG_SZ | ||
builds: [ '!>=22000' ] | ||
|
||
# Windows 11 | ||
- !registryValue: | ||
path: 'HKCU\Control Panel\Quick Actions\Control Center\Unpinned' | ||
value: 'Microsoft.QuickAction.Cast' | ||
data: '' | ||
type: REG_NONE | ||
builds: [ '>=22000' ] | ||
- !registryValue: | ||
path: 'HKCU\Control Panel\Quick Actions\Control Center\Unpinned' | ||
value: 'Microsoft.QuickAction.NearShare' | ||
data: '' | ||
type: REG_NONE | ||
builds: [ '>=22000' ] | ||
- !registryValue: | ||
path: 'HKCU\Control Panel\Quick Actions\Control Center\QuickActionsStateCapture' | ||
value: 'Toggles' | ||
data: 'Toggles,Microsoft.QuickAction.BlueLightReduction:false,Microsoft.QuickAction.Accessibility:false,Microsoft.QuickAction.ProjectL2:false' | ||
type: REG_SZ | ||
builds: [ '>=22000' ] |
11 changes: 11 additions & 0 deletions
11
src/playbook/Configuration/tweaks/qol/shell/show-more-pins.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: Show More Pins in Start | ||
description: Shows more pins in the Start Menu, meaning less recommendations | ||
privilege: TrustedInstaller | ||
builds: [ '>=22000' ] | ||
actions: | ||
- !registryValue: | ||
path: 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' | ||
value: 'Start_Layout' | ||
data: '1' | ||
type: REG_DWORD |
11 changes: 11 additions & 0 deletions
11
src/playbook/Configuration/tweaks/qol/taskbar/disable-copilot.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: Disable Windows Copilot | ||
description: Disables Windows Copilot as it depends on Edge, as well it collecting data and it not being used by most users | ||
privilege: TrustedInstaller | ||
builds: [ '>=22000' ] | ||
actions: | ||
- !registryValue: | ||
path: 'HKLM\Software\Policies\Microsoft\Windows\WindowsCopilot' | ||
value: 'TurnOffWindowsCopilot' | ||
data: '1' | ||
type: REG_DWORD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.