From 45503b4d1fa2eab12e956498338aa1bea758db71 Mon Sep 17 00:00:00 2001 From: Joel Mathew Thomas <90510078+joelmathewthomas@users.noreply.github.com> Date: Tue, 16 Jul 2024 13:17:03 +0530 Subject: [PATCH] Update README.md --- README.md | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 51 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 16c59ab..46659d7 100644 --- a/README.md +++ b/README.md @@ -1 +1,51 @@ -Dotfiles for my Hyprland WM, Shell Configs .... +## My Dotfiles + +Welcome to my dotfiles repository! This repository contains my personal configurations for various applications and tools like Hyprland, Shell configs ... + +## Getting Started + +Follow these steps to clone the repository and set up the dotfiles: + +### Clone the Repository + +First, clone the repository to your home directory: + +```bash +git clone https://github.com/YOUR_USERNAME/dotfiles.git $HOME/.dotfiles +``` + +### Enter the Directory + +Navigate to the newly cloned directory: + +```bash +cd $HOME/.dotfiles +``` + +### Apply the dotfiles + +Install `stow` using your distro's package manager. + +For Arch : + +```bash +sudo pacman -Syu stow +``` + +Create the symlinks : + +```bash +stow . +``` + +Now, the corresponding symlinks have been successfully created. + +### Remove dotfiles + +To remove the dotfiles , do : + +```bash +cd $HOME/.dotfiles +stow -D . +cd .. ; rm -rf .dotfiles/ +```