Skip to content

Commit 1299849

Browse files
committed
restructure repository
1 parent 596ffae commit 1299849

File tree

26 files changed

+16
-16
lines changed

26 files changed

+16
-16
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# ps-scripts
1+
# daily-scripts
22

3-
This project was created to have a single repository for all the utility scripts I create in the future. Mostly PowerShell stuff, but anything goes. Feel free to grab something you like.
3+
This repository was created as a storage to have a single place for all the utility scripts I use. Some of them were created by me, the rest was found on the internet to solve whatever problem I had. Feel free to grab something you like.
44

55
## Structure
66

77
```
8-
/terminal
9-
... Windows Terminal related
10-
/utils
11-
... Utility scripts for my development environment
8+
/windows-terminal
9+
... Windows Terminal related stuff
10+
/powershell
11+
... Powershell utility scripts to ease the pain of existence
1212
```
File renamed without changes.

utils/drm/readme.md renamed to powershell/drm/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
1. Import the module in your `Profile.ps1`:
44

55
```PowerShell
6-
Import-Module -Name "C:\_repos\ps-scripts\utils\docker.ps1"
6+
Import-Module -Name "C:\_repos\daily-scripts\powershell\docker.ps1"
77
```
88

99
2. Set aliases for the functions you want to use:
File renamed without changes.

utils/git-user/readme.md renamed to powershell/git-user/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
1. Import the module in your `Profile.ps1`:
55

66
```PowerShell
7-
Import-Module -Name "C:\_repos\ps-scripts\utils\gitUsers.ps1"
7+
Import-Module -Name "C:\_repos\daily-scripts\powershell\gitUsers.ps1"
88
```
99

1010
2. Set an alias for the function:
File renamed without changes.

utils/k8s-all/readme.md renamed to powershell/k8s-all/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Gets all resources in the specified namespace. If the namespace was not provided
55
1. Import the module in your `Profile.ps1`:
66

77
```PowerShell
8-
Import-Module -Name "C:\_repos\ps-scripts\utils\k8s-all\k8s.psm1"
8+
Import-Module -Name "C:\_repos\daily-scripts\powershell\k8s-all\k8s.psm1"
99
```
1010

1111
2. Set an alias for the function:
File renamed without changes.

utils/k8s-ctx/readme.md renamed to powershell/k8s-ctx/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
1. Import the module in your `Profile.ps1`:
44

55
```PowerShell
6-
Import-Module -Name "C:\_repos\ps-scripts\utils\k8s-ctx\k8s.psm1"
6+
Import-Module -Name "C:\_repos\daily-scripts\powershell\k8s-ctx\k8s.psm1"
77
```
88

99
2. Add a configuration file next to your `Profile.ps1`:
File renamed without changes.

0 commit comments

Comments
 (0)