Skip to content

tobihans/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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