-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add arch linux module and helper scripts ⚗️ (#10)
* add ps-arch-wsl module * add install and post install scripts
- Loading branch information
1 parent
9ed58b1
commit 4a9f7be
Showing
3 changed files
with
21 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
# Post install script for Arch Linux (on WSL) called by the ps-arch-wsl ps module | ||
# More info at https://github.com/scottmckendry/ps-arch-wsl | ||
|
||
cd ~ | ||
mkdir git -p && cd git | ||
git clone https://github.com/scottmckendry/dots && cd dots | ||
./setup.sh |
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,9 @@ | ||
# Simple install script for Arch Linux in WSL | ||
# More info at https://github.com/scottmckendry/ps-arch-wsl | ||
|
||
#requires -RunAsAdministrator | ||
#requires -Modules ps-arch-wsl | ||
|
||
Set-Location -Path $PSScriptRoot | ||
$Credential = Get-Credential -UserName "scott" | ||
Install-ArchWSL -Credential $Credential -PostInstallScript "./arch-post-install.sh" |