https://github.com/ishchow/dotfiles-old
Personal dotfiles and stuff
https://github.com/ishchow/dotfiles-old
chezmoi dotfiles dotfiles-linux dotfiles-windows
Last synced: 5 months ago
JSON representation
Personal dotfiles and stuff
- Host: GitHub
- URL: https://github.com/ishchow/dotfiles-old
- Owner: ishchow
- Archived: true
- Created: 2019-12-09T05:20:34.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-03-19T04:10:33.000Z (about 3 years ago)
- Last Synced: 2024-08-13T07:16:03.574Z (8 months ago)
- Topics: chezmoi, dotfiles, dotfiles-linux, dotfiles-windows
- Language: Shell
- Homepage:
- Size: 37.8 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - ishchow/dotfiles-old - Personal dotfiles and stuff (Shell)
README
Screwed up repo due to use of large, binary files. Moved to https://github.com/ishchow/dotfiles
**Archived**
Personal dotfiles for Windows and Linux. Dotfiles managed using [chezmoi](https://www.chezmoi.io/).
# Setup dependencies
## Windows
Open Powershell as admin:
Set execution policy to bypass so we can run bw cli. I generally find the defaults to be annoying anyways:
`Set-ExecutionPolicy -ExecutionPolicy Bypass`
Install chocolatey:
```
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
```Install chezmoi and nodejs (needed for bw cli):
`choco install -y git chezmoi nodejs`
Install bw cli:
`npm install -g @bitwarden/cli`
## Linux (OpenSUSE Tumbleweed)
[Install chezmoi](https://www.chezmoi.io/docs/install/)
```
sudo zypper in -y npm nodejs-default git
sudo npm install -g @bitwarden/cli
```# Init dotfiles
chezmoi init --apply ishchow# Initialize dotfiles
`chezmoi init --apply ishchow`
# Bootstrap new system
## Linux (OpenSUSE Tumbleweed)Enter bootstrap directory:
`cd ~/bootstrap`
Run with default arguments:
`./bootstrap`
## Windows
Open Powershell as admin.
Enter bootstrap directory:
`cd ~\bootstrap`
Run bootstrap script:
`.\bootstrap.ps1`