Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```