mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2024-11-10 00:59:38 +00:00
Update PATH on .profile
Also in this commit: * Updated the default PGP keyids to export for the private part. Also use long keyids to avoid possible confusion on GPG side. Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.eu.org>
This commit is contained in:
parent
01c95345a3
commit
21db77e121
2 changed files with 6 additions and 6 deletions
4
.profile
4
.profile
|
@ -7,7 +7,7 @@ if [ -n "$BASH_VERSION" ]; then
|
|||
fi
|
||||
fi
|
||||
|
||||
export PATH="/usr/local/bin${PATH:+:}$PATH" # ~vern specifics, might work on this soon.
|
||||
export PATH="/usr/local/bin${PATH:+:}$PATH" # ~vern specifics and more
|
||||
mesg n 2> /dev/null || true
|
||||
|
||||
# then import the rest
|
||||
|
@ -16,7 +16,7 @@ source "$HOME/.config/aliases"
|
|||
export POSIX_PROFILE_SOURCED=true
|
||||
|
||||
# how about detecting local configs
|
||||
if [ ! -f "$HOME/.config/localconfig.env" ]; then
|
||||
if [ -f "$HOME/.config/localconfig.env" ]; then
|
||||
. "$HOME/.config/localconfig.env"
|
||||
fi
|
||||
|
||||
|
|
|
@ -2,10 +2,10 @@
|
|||
|
||||
# a script to generate backups for my GPG keys
|
||||
|
||||
# literally all of active keys I use for different purposes
|
||||
# https://ajhalili2006.vern.cc/
|
||||
DEFAULT_PRIVATE_KEYS="A30EBE40AD856D88 67BFC91B3DA12BE8 940047813E9D641C 120C218ED2291996 7067DB4C7768552F 7E4E0EF8B968A952"
|
||||
DEFAULT_PUBLIC_KEYS="A30EBE40AD856D88 67BFC91B3DA12BE8 940047813E9D641C 120C218ED2291996"
|
||||
# literally all of active keys I use for different purposes, including some
|
||||
# I maintain (such as Recap Time Squad's keys for support and security issues
|
||||
DEFAULT_PRIVATE_KEYS="0527234A430387EA5695D824A30EBE40AD856D88 4D5E631758CB9CC45941B1CE67BFC91B3DA12BE8 EA957E7086E934F8DB9CAD21940047813E9D641C 5D69E717C5BC95731C2AD8BD120C218ED2291996 2CFF8721393487AEEF2C38987067DB4C7768552F 18C97CF46F06176E7EC43BDC7E4E0EF8B968A952 51D2F9710A20AAE56DC9A9AB77D63E4A0C267204 11F7802B423286A5FCF40AF48AEB225605921F92"
|
||||
DEFAULT_PUBLIC_KEYS="0527234A430387EA5695D824A30EBE40AD856D88 4D5E631758CB9CC45941B1CE67BFC91B3DA12BE8 EA957E7086E934F8DB9CAD21940047813E9D641C 5D69E717C5BC95731C2AD8BD120C218ED2291996"
|
||||
|
||||
# allow anybody to automate this via envvars
|
||||
PRIVATE_KEYS="${PRIVATE_KEYS:-"$DEFAULT_PRIVATE_KEYS"}"
|
||||
|
|
Loading…
Reference in a new issue