diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-01-28 11:10:26 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-01-28 11:10:26 -0200 |
commit | bd23f3afb6238175924be485d77dedca381d278c (patch) | |
tree | 01ddde5a49071aeb1c54567f2bba7d9bf63abaa6 | |
parent | 1fc87da3cee3fef248fe7c7d92cb77dbcf47cb5e (diff) | |
download | inception-bd23f3afb6238175924be485d77dedca381d278c.tar.gz inception-bd23f3afb6238175924be485d77dedca381d278c.tar.bz2 |
Updates inception
-rw-r--r-- | ChangeLog | 0 | ||||
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | TODO.md | 2 | ||||
-rwxr-xr-x | infection | 16 |
4 files changed, 15 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index e69de29..0000000 --- a/ChangeLog +++ /dev/null @@ -1,2 +1,4 @@ -inception -========= +The Inception +============= + +Infects your homedir with configurations and applications. @@ -1,2 +1,4 @@ TODO ==== + +* update action with trusted keys support using custom gpg keydir @@ -32,14 +32,16 @@ function infection_init { # # This way we can easily check the integrity of our dotfiles # once the integrity of the apps repo is checked - if [ -e "$HOME/.dotfiles" ]; then - if [ ! -h "$HOME/.dotfiles" ] || [ "`readlink $HOME/.dotfiles`" != "apps/dotfiles" ]; then - mkdir -p $BACKUPS - mv $HOME/.dotfiles $BACKUPS/ - ( cd $HOME &> /dev/null && ln -s apps/dotfiles .dotfiles ) + if [ -e "$HOME/apps/dotfiles" ]; then + if [ -e "$HOME/.dotfiles" ]; then + if [ ! -h "$HOME/.dotfiles" ] || [ "`readlink $HOME/.dotfiles`" != "apps/dotfiles" ]; then + mkdir -p $BACKUPS + mv $HOME/.dotfiles $BACKUPS/ + ( cd $HOME &> /dev/null && ln -s apps/dotfiles .dotfiles ) + fi + else + ( cd $HOME &> /dev/null && ln -s apps/dotfiles .dotfiles ) fi - else - ( cd $HOME &> /dev/null && ln -s apps/dotfiles .dotfiles ) fi #if [ ! -e "$HOME/.dotfiles" ]; then |