dotfm

My dotfile manager
git clone git://src.gearsix.net/dotfm
Log | Files | Refs | Atom | README | LICENSE

commit ec41110bd9ee531f6e4e64a419f19b15b30c32e6
parent d419c8688d64ff025a68c26771f893d7ada124f5
Author: GeaRSiX <gearsix@tuta.io>
Date:   Sun, 26 Jul 2020 13:28:00 +0100

changed DOTFM_CSV_FILE location to .local

Diffstat:
Msrc/dotfm.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/dotfm.py b/src/dotfm.py @@ -30,7 +30,7 @@ USER = os.getenv('USER') # $USER calling dotfm ARGS = sys.argv # parsed arguments EDITOR = os.getenv('EDITOR') or 'nano' # text editor to modify dotfiles with VERSION = 'v1.0.2' -DOTFM_CSV_FILE = '/home/{}/.config/dotfm/installed.csv'.format(USER) +DOTFM_CSV_FILE = '/home/{}/.local/dotfm/installed.csv'.format(USER) KNOWN_DOTFILES = [ # dotfiles that dotfm knows by default # location # aliases ['/home/{}/.config/dotfm/{}'.format(USER, os.path.basename(DOTFM_CSV_FILE)), os.path.basename(DOTFM_CSV_FILE), 'dotfm'],