Skip to content

Latest commit

 

History

History
40 lines (39 loc) · 1.82 KB

copy_dots_directions.md

File metadata and controls

40 lines (39 loc) · 1.82 KB

clone_&_copy_dots.bat to automate the process ~ (UAC Req.)

Navigate to user home directory

cd ~

Clone Repo

git clone https://github.com/dillacorn/win-glaze-dots

Recursive copy dotfiles

Copy and overwrite .glazr folder dots

Copy-Item -Recurse -Path "$env:UserProfile\win-glaze-dots\UserProfile\.glzr" -Destination "$env:UserProfile" -Force

Copy and overwrite scripts folder

Copy-Item -Recurse -Path "$env:UserProfile\win-glaze-dots\UserProfile\scripts" -Destination "$env:UserProfile" -Force

Copy and overwrite alacritty dots

Copy-Item -Recurse -Path "$env:UserProfile\win-glaze-dots\AppData\Roaming\alacritty" -Destination "$env:AppData\Roaming" -Force

Copy and overwrite flameshot dots

Copy-Item -Recurse -Path "$env:UserProfile\win-glaze-dots\AppData\Roaming\flameshot" -Destination "$env:AppData\Roaming" -Force

Copy scoop dotfiles

Copy and overwrite altsnap dots

Copy-Item -Path "$env:UserProfile\win-glaze-dots\UserProfile\scoop\apps\altsnap\1.64\AltSnap.ini" -Destination "$env:UserProfile\scoop\apps\altsnap\1.64\AltSnap.ini" -Force

Copy and overwrite btop dots

Copy-Item -Path "$env:UserProfile\win-glaze-dots\UserProfile\scoop\apps\btop\1.0.4\btop.conf" -Destination "$env:UserProfile\scoop\apps\btop\1.0.4\btop.conf" -Force

Copy and overwrite Startup Folder dots

Copy-Item -Path "$env:UserProfile\win-glaze-dots\UserProfile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup" -Destination "$env:UserProfile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup" -Force