install.fairie/home/dot_local/bin/post-installx/executable_post-atuin.sh

22 lines
856 B
Bash
Raw Normal View History

2024-05-04 21:05:33 -07:00
#!/usr/bin/env bash
# @file Atuin Initialization
# @brief Registers with atuin, logs in, imports command history, and synchronizes
2024-05-27 20:45:14 -07:00
set -Eeuo pipefail
trap "logg error 'Script encountered an error!'" ERR
2024-05-27 04:15:03 -07:00
2024-05-04 21:05:33 -07:00
if command -v atuin > /dev/null; then
2024-05-27 20:45:14 -07:00
if get-secret --exists ATUIN_USERNAME ATUIN_EMAIL ATUIN_PASSWORD ATUIN_KEY; then
logg info 'Registering Atuin account'
atuin register -u "$(get-secret ATUIN_USERNAME)" -e "$(get-secret ATUIN_EMAIL)" -p "$(get-secret ATUIN_PASSWORD)"
logg info 'Logging into Atuin account'
atuin login -u "$(get-secret ATUIN_USERNAME)" -p "$(get-secret ATUIN_PASSWORD)" -k "$(get-secret ATUIN_KEY)"
logg info 'Running atuin import auto'
atuin import auto
logg info 'Running atuin sync'
atuin sync
fi
2024-05-04 21:05:33 -07:00
else
logg info 'atuin is not available in the PATH'
fi