repo: Just commit my stuff before nuking anything

Signed-off-by: Andrei Jiroh Eugenio Halili <andreijiroh@madebythepins.tk>
This commit is contained in:
Andrei Jiroh Eugenio Halili 2021-04-19 17:41:46 +08:00
parent d771717313
commit beff73dc6b
Signed by: ajhalili2006
GPG Key ID: A30EBE40AD856D88
5 changed files with 22 additions and 2 deletions

View File

@ -85,3 +85,6 @@ alias add-ssh-key="$HOME/.dotfiles/bin/add-ssh-keys"
# shortcuts to some functions
alias edit-script="edit-script-file"
# add a bit of test here
alias guild-test="echo successfully imported owo"

View File

@ -1,5 +1,6 @@
#!/bin/bash
# these commands should be triggered on shell startup
source ~/.dotfiles/bashrc/aliases
source ~/.dotfiles/bashrc/worthwhile-functions
. ~/.dotfiles/bashrc/aliases
. ~/.dotfiles/bashrc/worthwhile-functions
guild-test

1
bin/import-gpg-keys Symbolic link
View File

@ -0,0 +1 @@
import-pgp-keys

8
bin/import-pgp-keys Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
if [ "$#" == "0" ]; then
echo "Usage: $0 your-pgp-key-name-here"
echo "If the script says the file isn't found, make sure"
echo "you placed it on your DOTFILES_HOME/secrets/pgp directory"
echo "(
fi

7
bin/reload-chain-source Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
echo "Reloading aliases and functions..."
. $DOTFILES_HOME/bashrc/chain-source
echo "info: We recommend to restart your terminal to ensure"
echo "info: removed entries and renamed ones are being loaded"
echo "info: and to avoid conflicts chaos."