Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kuroji-fusky/dotfiles
Kuro's config and script files for all kinds of automating files and stuff
https://github.com/kuroji-fusky/dotfiles
bash dotfiles powershell winget
Last synced: about 2 months ago
JSON representation
Kuro's config and script files for all kinds of automating files and stuff
- Host: GitHub
- URL: https://github.com/kuroji-fusky/dotfiles
- Owner: kuroji-fusky
- Created: 2022-07-30T08:20:49.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-06T19:11:42.000Z (3 months ago)
- Last Synced: 2024-12-05T00:00:45.447Z (2 months ago)
- Topics: bash, dotfiles, powershell, winget
- Language: PowerShell
- Homepage:
- Size: 152 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kuro's Config Dump and dotfiles
Here are my scripts I need for my machines to keep an optimal and consistent workflow
----
> [!NOTE]
> Running `bootstrap.ps1` will require admin privilages and allow the script by
> bypassing its Execution Policy:```powershell
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope CurrentUser; .\bootstrap.ps1
```## Python setup
For development, initialize a virtual environment.
```console
py -m venv venv
source venv/Scripts/activate# Windows
.\venv\Scripts\activate
```Then, install the good stuff:
```console
pip install -r requirements.txt
```