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

21 lines
905 B
Bash
Raw Normal View History

2024-05-04 02:40:44 +00:00
#!/usr/bin/env bash
# @file Keybase Configuration
# @brief Updates Keybase's system configuration with the Keybase configuration stored in the `home/dot_config/keybase/config.json` location.
# @description
# This script ensures Keybase utilizes a configuration that, by default, adds a security fix.
2024-05-28 03:45:14 +00:00
set -Eeuo pipefail
2024-05-28 03:50:11 +00:00
trap "gum log -sl error 'Script encountered an error!'" ERR
2024-05-27 11:15:03 +00:00
2024-05-04 02:40:44 +00:00
if command -v keybase > /dev/null; then
KEYBASE_CONFIG="${XDG_CONFIG_HOME:-$HOME/.config}/keybase/config.json"
if [ -f "$KEYBASE_CONFIG" ]; then
2024-05-28 03:50:11 +00:00
gum log -sl info 'Ensuring /etc/keybase is a directory' && sudo mkdir -p /etc/keybase
gum log -sl info "Copying $KEYBASE_CONFIG to /etc/keybase/config.json" && sudo cp -f "$KEYBASE_CONFIG" /etc/keybase/config.json
2024-05-04 02:40:44 +00:00
else
2024-05-28 03:50:11 +00:00
gum log -sl warn "No Keybase config located at $KEYBASE_CONFIG"
2024-05-04 02:40:44 +00:00
fi
else
2024-05-28 03:50:11 +00:00
gum log -sl info 'The keybase executable is not available'
2024-05-04 02:40:44 +00:00
fi