-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
dabc910
commit 4af6530
Showing
127 changed files
with
567 additions
and
453 deletions.
There are no files selected for viewing
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.
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,10 @@ | ||
# While Windows doesn't make use of TEMPLATES directory or PUBLICSHARE directories | ||
# We can still put it in here if we use Cygwin X or other programs expecting these directories | ||
XDG_DESKTOP_DIR="$HOME/Desktop" | ||
XDG_DOWNLOAD_DIR="$HOME/Downloads" | ||
XDG_TEMPLATES_DIR="$HOME/.Templates" | ||
XDG_PUBLICSHARE_DIR="$HOME/Public" | ||
XDG_DOCUMENTS_DIR="$HOME/Documents" | ||
XDG_MUSIC_DIR="$HOME/Music" | ||
XDG_PICTURES_DIR="$HOME/Pictures" | ||
XDG_VIDEOS_DIR="$HOME/Videos" |
File renamed without changes.
File renamed without changes.
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
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.
10 changes: 5 additions & 5 deletions
10
windows_packages_special.ps1 → ...files-config/windows_packages_special.ps1
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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
#!/usr/bin/env powershell | ||
#requires -RunAsAdministrator | ||
#requires -Version 5.0 | ||
|
||
param ( | ||
[switch]$Force | ||
) | ||
|
||
if ((Get-WindowsOptionalFeature -FeatureName Microsoft-Hyper-V -Online).State -eq 'Enabled') { | ||
|
||
|
||
if ($Force) { | ||
Install-Package -Name 'docker-for-windows' -ProviderName 'chocolateyget' -RequiredVersion '1.12.3.8488' -Force | ||
} else { | ||
Install-Package -Name 'docker-for-windows' -ProviderName 'chocolateyget' -RequiredVersion '1.12.3.8488' | ||
} | ||
|
||
|
||
} else { | ||
|
||
echo 'Microsoft Hyper V is not available on this computer. Instead of Docker for Windows, try: https://www.docker.com/products/docker-toolbox' | ||
echo 'It requires manual installation.' | ||
} | ||
|
||
} |
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.
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.