https://github.com/marcelcoding/.dotfiles
https://github.com/marcelcoding/.dotfiles
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/marcelcoding/.dotfiles
- Owner: MarcelCoding
- Created: 2022-03-09T08:14:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-14T14:52:27.000Z (over 3 years ago)
- Last Synced: 2025-02-08T04:46:48.686Z (8 months ago)
- Language: Shell
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# .dotfiles
```bash
git clone https://github.com/MarcelCoding/.dotfiles.git ~/.dotfiles
bash ~/.dotfiles/install.sh
```If the promt is not working, add the following lines to the end of your `~/.bashrc`.
```bash
# User specific aliases and functions
if [ -d ~/.bashrc.d ]; then
for rc in ~/.bashrc.d/*; do
if [ -f "$rc" ]; then
. "$rc"
fi
done
fiunset rc
```