dgy
/
hexagons
Archived
1
0
Fork 0
This repository has been archived on 2021-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
hexagons/.local/bin/hx

12 lines
314 B
Bash
Executable File

#!/bin/sh
# Dotfiles on Git
# Instructions here https://news.ycombinator.com/item?id=11070797
# https://developer.atlassian.com/blog/2016/02/best-way-to-store-dotfiles-git-bare-repo/
h() { git --git-dir="$HOME/.local/share/hexagons/" --work-tree="$HOME" "$@"; }
case $1 in
*) h "$@" ;;
esac