diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-04-11 16:25:25 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-04-11 16:25:25 +0200 |
| commit | 6dd179e85a0834420de3fea9ae409b8fab7c7f36 (patch) | |
| tree | 89b9f8c230beba5fec7a65dc8a290590adb359f7 /install | |
| parent | 10cd73c7b7d4a22ef1e2c7b1579be3d5ebe54585 (diff) | |
use sudo dnf, add wofi config, check for passage store
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." |