Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pasibergman/dotfiles
https://github.com/pasibergman/dotfiles
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pasibergman/dotfiles
- Owner: PasiBergman
- License: mit
- Created: 2023-11-27T06:27:49.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-08-16T10:06:35.000Z (3 months ago)
- Last Synced: 2024-08-16T11:26:53.555Z (3 months ago)
- Language: Shell
- Size: 88.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotfiles
Collection of many of my macOS/Linux configuration files.
Installation utilizes GNU Stow.
## dotfiles installation
- Make sure, that GNU Stow is installed, e.g. on macOS use
```shell
brew install stow
```- Choose a folder name for your dotfiles and store the name to a variable.
Store also the URL of the dotfiles repository```shell
DOTFILES_DIR="~/.dotfiles"# Using SSH
REPO_URL="[email protected]:PasiBergman/dotfiles.git"
# Using HTTPS
# REPO_URL="https://github.com/PasiBergman/dotfiles.git"git clone $REPO_URL $DOTFILES_DIR
cd $DOTFILES_DIR
#Link a directory
stow```