An open API service indexing awesome lists of open source software.

https://github.com/raksodiano/.dotfiles

My settings
https://github.com/raksodiano/.dotfiles

emacs git htop tmux xonsh

Last synced: 3 months ago
JSON representation

My settings

Awesome Lists containing this project

README

        





This repository contains all of my dotfiles configuration.

---

### Dotfiles Manager ###

I'm using [GNU Stow](https://www.gnu.org/software/stow/) a free, lightweight
dotfiles manager written in Perl to manages my dotfiles.

What's make differentiates it from other dotfiles managers is that it does
not require various Python, Ruby or Perl dependencies like most dotfiles
manager.

With that, it is easy to share files among multiple users or computers with a
few command lines.

--------------------

### List of configurations: ###

```
htop ➔ interactive process viewer
```

--------------------

### Getting Started ###

No matter what your Linux distribution, `stow` can easily be installed according
to your package manager:

- OpenSUSE
```bash
sudo zypper in stow
```

- Fedora
```bash
sudo dnf install stow
```

- Debian
```bash
sudo apt-get install stow
```

Once the installation is complete, make a clone of the repository:

```bash
git clone https://github.com/raksodiano/.dotfiles.git
```

You can now install any configurations you wish to copy using GNU Stow:

```bash
# Make sure you are in the right directory
cd .dotfiles

# Example to install the htop config
stow htop

# Uninstall the htop config
stow -D htop
```