Personal dotfiles. The installation supports Arch and Debian based systems.
Find a file
2020-09-11 12:21:15 +02:00
dotfiles Make user compile YCM manually 2020-09-11 11:57:50 +02:00
pacman_hooks Change description for hook 2020-09-11 09:00:40 +02:00
.gitignore Add secrets.template and update README with instructions 2020-09-08 10:12:35 +02:00
arch-desktop_borg.sh When using -f the variable 'cache_file' was not set 2020-09-08 14:43:20 +02:00
firefox_addons.txt Add list of firefox addons 2020-06-12 12:34:53 +02:00
install.py Make symlink and copy src relative to basedir, not to dotfiles 2020-09-11 12:21:15 +02:00
README.md Change cp command and add rename 2020-09-08 11:57:11 +02:00
requirements.txt Add path 2020-04-18 21:05:02 +02:00
secrets.template Start working checking secrets content 2020-09-09 15:55:44 +02:00
shellcheck_binary_fix.sh Update shellcheck binary url 2020-09-05 11:11:31 +02:00
todo Add note for upstream i3blocks-contrib 2020-09-11 08:56:49 +02:00

Getting started

The Python requirements are all in requirements.txt, so before starting you need to issue the following command:

$ pip install -r requirements.txt --user

without using sudo. Using sudo with pip is a bad idea because it will interfere with your distribution's package manager.

If on a fresh install, you won't have pip installed, so you'll need:

$ sudo pacman -S python-pip

or

$ sudo apt install python3-pip

The authentication details are stored in secrets. Therefore, you have a template secrets.template that you need to copy and rename:

$ cp secrets{.template,}

Modify the resulting file, and then run ./install.py with needed flags (./install.py -h is your friend).

About the files in the repo

  • arch-desktop_borg.sh
    Borg backup script. Used by a pacman hook to backup my system.

  • configs.yml
    Lists the things to install, which includes programs, symlinks, git clones, shell commands...

  • dotfiles/
    The actual dotfiles. They are symlinked to the location that the system expects to find them.

  • install.py
    Installs everything using configs.yml. This is the file to actually run.

  • firefox_addons.txt
    I like to install my Firefox add-ons manually in the Firefox add-on manager, so this file just reminds me what to install and includes the urls to each add-on.

  • pacman_hooks/
    You need to manually copy or symlink any hook to /etc/pacman.d/hooks/ to activate it.

  • shellcheck_binary_fix.sh
    When running this on Manjaro, pacman was unable to find the shellcheck package, so this script installs the pre-compiled binary instead. If your package manager finds shellcheck, this script won't run.

  • todo
    Never seems to remain empty...

Thanks

The idea for the architecture was taken from Dimitri Merejkowsky's GitHub.