diff options
Diffstat (limited to 'install')
| -rwxr-xr-x | install | 16 |
1 files changed, 10 insertions, 6 deletions
@@ -73,6 +73,9 @@ ln -fns ../.dotfiles/config/emacs ~/.config/emacs # fuzzel ln -fns ../.dotfiles/config/fuzzel ~/.config/fuzzel +# +# wofi +ln -fns ../.dotfiles/config/wofi ~/.config/wofi # mako ln -fns ../.dotfiles/config/mako ~/.config/mako @@ -100,12 +103,13 @@ ln -fns .dotfiles/age-recipients ~/.age-recipients touch ~/.tool-versions -# Italics setup -echo "Setting up terminfo" -tic xterm-256color-italic.terminfo - -echo "Cloning password store" +echo "Setting up password store" mkdir -p ~/.passage -git clone git@git.r.bdr.sh:rbdr/pass ~/.passage/store +if [ ! -d "$HOME/.passage" ]; then + echo ">>> Cloning." + git clone git@git.r.bdr.sh:rbdr/pass ~/.passage/store +else + echo ">>> Already exists." +fi echo "Sensitive files have not been decrypted. Run ./sensitive to decrypt." |