From 485aac09ffffe2f97803c63f8d1aaf0a98fcbc11 Mon Sep 17 00:00:00 2001 From: he3als <65787561+he3als@users.noreply.github.com> Date: Sun, 6 Oct 2024 17:39:14 +0100 Subject: [PATCH] fix(config pins): chrome --- src/playbook/Configuration/custom.yml | 2 +- .../Configuration/tweaks/qol/taskbar/config-pins.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/playbook/Configuration/custom.yml b/src/playbook/Configuration/custom.yml index b703e7405f..752c1a3a3e 100644 --- a/src/playbook/Configuration/custom.yml +++ b/src/playbook/Configuration/custom.yml @@ -3,7 +3,7 @@ title: Root Playbook File description: Runs all of the Playbook files actions: # AME Wizard seemingly has a bug where it doesn't mount other user's Registry hives - - !writeStatus: {status: 'Preparing Hives'} + - !writeStatus: {status: 'Preparing hives'} - !powerShell: command: | $profileList = Get-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList' -Name 'ProfilesDirectory', 'Default' -EA 0 diff --git a/src/playbook/Configuration/tweaks/qol/taskbar/config-pins.yml b/src/playbook/Configuration/tweaks/qol/taskbar/config-pins.yml index 2edc3bc0aa..20c78012bb 100644 --- a/src/playbook/Configuration/tweaks/qol/taskbar/config-pins.yml +++ b/src/playbook/Configuration/tweaks/qol/taskbar/config-pins.yml @@ -42,19 +42,19 @@ actions: option: '!install-another-browser' exeDir: true - !powerShell: - command: '.\TASKBARPINS.ps1 "Brave"' + command: ".\\TASKBARPINS.ps1 'Brave'" option: 'browser-brave' exeDir: true - !powerShell: - command: '.\TASKBARPINS.ps1 "Firefox"' + command: ".\\TASKBARPINS.ps1 'Firefox'" option: 'browser-firefox' exeDir: true - !powerShell: - command: '.\TASKBARPINS.ps1 "Google Chrome"' + command: ".\\TASKBARPINS.ps1 'Google Chrome'" option: 'browser-chrome' exeDir: true - !powerShell: - command: '.\TASKBARPINS.ps1 "LibreWolf"' + command: ".\\TASKBARPINS.ps1 'LibreWolf'" option: 'browser-librewolf' exeDir: true - !run: {exe: 'explorer.exe', runas: 'currentUser', wait: false}