Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 505 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 505 Bytes

My dotfiles

This repository contains my managed dotfiles. Based on chezmoi.

Requirements

  • OS: Manjaro or Arch

Setup

  • One line
sh -c "$(curl -fsLS get.chezmoi.io)" -- init --apply https://github.com/tobihans/dotfiles.git
  • Script
dotfiles_location='https://github.com/tobihans/dotfiles.git'

if ! [[ -x "$(command -v chezmoi)" ]]; then
    sudo pacman -Syu chezmoi
    chezmoi init --verbose --apply $dotfiles_location
fi