https://github.com/nerixyz/scripts
Common scripts/utilities I use throught different projects
https://github.com/nerixyz/scripts
powershell scripts windows
Last synced: 7 months ago
JSON representation
Common scripts/utilities I use throught different projects
- Host: GitHub
- URL: https://github.com/nerixyz/scripts
- Owner: Nerixyz
- License: mit
- Created: 2024-02-12T15:24:39.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-07T14:59:38.000Z (about 1 year ago)
- Last Synced: 2025-03-07T15:39:42.685Z (about 1 year ago)
- Topics: powershell, scripts, windows
- Language: PowerShell
- Homepage: https://nerixyz.de/scripts
- Size: 75.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# scripts
This repository/site contains some scripts or snippets I often use throughout different projects and/or machines.
The scripts can be found in [`scripts/`](scripts), scripts in `scripts/bin/{os}` should be added to _PATH_.
Feel free to add new scripts or adjust scripts to fit your setup (e.g. by adding parameters).
You can find the site at [nerixyz.de/scripts](https://nerixyz.de/scripts).
## Building
Please use a [virtual environment](https://docs.python.org/3/library/venv.html) (POSIX: `python3 -m venv venv` and `source venv/bin/activate`).
```shell
pip3 install -r requirements.txt
# Preview
mkdocs serve
# Build
mkdocs build
```
## Adding a new Script/Snippet
- Find or create a category (e.g. VS Code)
- Add your script/snippet to `scripts/`
- If the script should be in PATH, add it to `scripts/bin/{os}`
- Add a new Markdown file
- Add your script/snippet using the `--8<--` snippet syntax ([docs](https://facelessuser.github.io/pymdown-extensions/extensions/snippets/))