This commit is contained in:
John Doty 2022-06-13 21:31:26 -07:00
parent b5b441ae53
commit e83a70ac57

View file

@ -54,8 +54,9 @@ for source in source_files:
# present, and want to maintain it. Sometimes we just don't want to track a # present, and want to maintain it. Sometimes we just don't want to track a
# subdirectory. You know. # subdirectory. You know.
home_config = os.path.join(os.path.expanduser("~"), ".config") home_config = os.path.join(os.path.expanduser("~"), ".config")
for source in os.listdir(os.path.join(root_directory, ".config")): root_config = os.path.join(root_directory, ".config")
source = os.path.abspath(source) for source in os.listdir(root_config):
source = os.path.abspath(os.path.join(root_config, source))
dst = os.path.join(home_config, os.path.split(source)[1]) dst = os.path.join(home_config, os.path.split(source)[1])
link_helper(source, dst) link_helper(source, dst)
@ -101,3 +102,5 @@ if os.getenv("LOCALAPPDATA") is not None:
terminal_root terminal_root
) )
) )
# Check to set the shell to fish, if we need to