dotfiles/installer.py
koumakpet 3fd8308768 Added installer
- Run dotfiles_install and package_install in singular file
- Makes it easier for users
2020-04-05 19:27:24 +02:00

7 lines
153 B
Python

import dotfiles_install as df
import package_install as pkg
if __name__ == '__main__':
pkg.main()
dotfiles = df.Dotfiles()
dotfiles.start()