Personal dotfiles. The installation supports Arch and Debian based systems.
Find a file
2020-09-05 12:29:18 +02:00
dotfiles Rename toacl to clitip, easier to remember 2020-09-05 10:43:28 +02:00
git_hooks Change hook to include remote else we loose it in git log 2020-09-03 17:21:13 +02:00
pacman_hooks Add stat section to backup pacman hook to avoid doing it more that once a day 2020-09-03 13:32:55 +02:00
.gitignore Add process file to gitignore 2020-05-06 10:34:51 +02:00
firefox_addons.txt Add list of firefox addons 2020-06-12 12:34:53 +02:00
install.py Put define_os after self.hide_commands 2020-09-04 15:22:28 +02:00
README.md Create README from notes 2020-09-05 12:29:18 +02:00
requirements.txt Add path 2020-04-18 21:05:02 +02:00
shellcheck_binary_fix.sh Update shellcheck binary url 2020-09-05 11:11:31 +02:00
symlink_git_hooks.sh Add messages to symlink script 2020-09-05 12:12:48 +02:00
todo Add link for removing data 2020-09-05 12:21:06 +02:00

requirements.txt

  • cli-ui -> build user interface in the terminal
  • colorama -> dependency of cli-ui
  • unidecode -> dependency of cli-ui
  • ruamel.yaml -> load and dump yaml with python
  • path -> create path objects (alternative to os.path)

bootstrap.sh

configs.yml

  • holds the symlinks, git clones and config writes

install.py

main()

  • parses args: undefined number of programs as a list
  • has a flag to overwrite (--force)
  • Installer is a class, --force flag is passed to constructor
  • runs Installer.install with the programs list

class Installer(force=False)

  • self.conf -> load configs.yml
  • self.this_dir = getcwd()
  • self.home = ~ (expanduser)
  • self.force = force
  • install():
    • if no program in list, programs are found in self.conf
    • for each program, run install_program(program)
  • install_program(program)
    • print program name
    • look up program conf and assign to todo variable
    • for each action in todo, call corresponding method
  • do_clone(url, dest, branch='master'):
    • create dirs for dest recursively
    • use subprocess to issue git clone command
  • do_copy(src, dest):
    • create dirs for dest recursively
    • copy a config file to dest
  • do_download(*, url, dest, executable=False):
    • create dirs for dest recursively
    • fetch url to dest
    • if it should be executable, chmod it to 755
  • do_run(args):
    • args is a list
    • from that list, create a command
    • subprocess.check_call(command)
  • do_symlink(src, dest):
    • if is_dir make tree from parent.parent
    • if not is_dir make tree from parent
    • if dest is a link, remove it
    • create the symlink
  • do_write(src, contents):
    • create path to src
    • format the content with self.this_dir and self.home
    • add newline at end
    • write to file