/ readme.org
readme.org
 1  * dotconf
 2  
 3  There's no place like ~::1~!
 4  
 5  The idea for managing dot files in this way came from [[https://news.ycombinator.com/item?id=11071754][here]].
 6  
 7  ** Install
 8  
 9  #+begin_src shell
10  git clone --separate-git-dir=~/.dotconf git@git.sr.ht:~qbit/dotconf /tmp/dotconf
11  # or 
12  git clone --separate-git-dir=~/.dotconf https://github.com/qbit/dotconf /tmp/dotconf
13  
14  rm -rf /tmp/dotconf
15  
16  alias dotconf='/usr/local/bin/git --git-dir=$HOME/.dotconf --work-tree=$HOME'
17  
18  dotconf config status.showUntrackedFiles no
19  dotconf checkout .
20  #+end_src
21  
22  ** LICENSE
23  
24  #+begin_src
25  *
26   * Copyright (c) 2020 Aaron Bieber <aaron@bolddaemon.com>
27   *
28   * Permission to use, copy, modify, and distribute this software for any
29   * purpose with or without fee is hereby granted, provided that the above
30   * copyright notice and this permission notice appear in all copies.
31   *
32   * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
33   * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
34   * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
35   * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
36   * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
37   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
38   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
39   */
40  #+end_src