Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrdandelion6/.dotfiles
my dotfiles for unix
https://github.com/mrdandelion6/.dotfiles
dotfiles unix
Last synced: 13 days ago
JSON representation
my dotfiles for unix
- Host: GitHub
- URL: https://github.com/mrdandelion6/.dotfiles
- Owner: mrdandelion6
- Created: 2025-01-09T01:59:49.000Z (28 days ago)
- Default Branch: main
- Last Pushed: 2025-01-15T02:25:59.000Z (22 days ago)
- Last Synced: 2025-01-24T14:19:16.538Z (13 days ago)
- Topics: dotfiles, unix
- Language: Shell
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
my dotfiles for unix.
## desc
this repository allows you to keep a version control over your dotfiles like `.bashrc`. first it backs up and removes any dotfiles from `~` that are also in this repo. then it creates symbolic links in `~` that point to the dotfiles in this repo.
## setup
clone this repo in ~
```bash
cd ~
git clone [email protected]:mrdandelion6/dotfiles.git
```backup current dot files
```bash
chmod u+x dotfiles/backup_dotfiles.sh
./dotfiles/backup_dotfiles.sh
```override current dot files with symbolic link
```bash
chmod u+x dotfiles/override_dotfiles.sh
./dotfiles/override_dotfiles.sh
```**optional**: if you want to restore everything from `~/backup_dotfiles/`:
```bash
mv ~/backup_dotfiles/* ~/dotfiles/*
```