dotfm

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

commit fee09e3ab823c4e6430ec952d31683e93337278d
parent fa1149774ed540925ddc58baf4b6e1ce0644efed
Author: gearsix <gearsix@tuta.io>
Date:   Mon, 11 Oct 2021 11:28:06 +0100

bugfix - added HOME, removed USER

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

diff --git a/src/dotfm.py b/src/dotfm.py @@ -21,7 +21,7 @@ import argparse # GLOBALS #--------- NAME = os.path.basename(__file__) -USER = os.getenv('USER') +HOME = os.getenv('HOME') ARGS = [] EDITOR = os.getenv('EDITOR') or 'nano' VERSION = 'v2.2.1'