forked from CodelyTV/dotly
-
Notifications
You must be signed in to change notification settings - Fork 0
Initial steps
Gilberto Olivas edited this page Feb 9, 2024
·
7 revisions
bash <(wget -qO- https://raw.githubusercontent.com/CodelyTV/dotly/HEAD/installer)bash <(curl -s https://raw.githubusercontent.com/CodelyTV/dotly/HEAD/installer)You can safely install additional software and make any changes to the file system. Once you exit zsh the image is deleted.
docker run -e TERM -e COLORTERM -e LC_ALL=C.UTF-8 -w /root -it --rm alpine sh -uec ' apk add curl sudo bash zsh git g++ python3 bash -c "$(curl -fsSL https://raw.githubusercontent.com/CodelyTV/dotly/HEAD/installer)" zsh'
docker run -e TERM -e COLORTERM -w /root -it --rm ubuntu sh -uec ' apt-get update apt-get install -y curl build-essential sudo su -c bash -c "$(curl -fsSL https://raw.githubusercontent.com/CodelyTV/dotly/HEAD/installer)" su -c zsh'
where are going to be located your dotfiles?
- press
Enterif you ok with the default location (~/.dotfiles) - if you want a custom location, the path should include the name of your new dotfiles folder (ex.
~/Documents/workspace/<folder_name>), you don't need to create it manually, if you do that, you'll get a .back folder of your empty folder
- If you want to implement a new feature/script, please, open an issue first
A lot of dotly concepts has been inspired by denisidoro/dotfiles
MIT Β© CodelyTV