From b98177ef19c0d5e3702425e9fd57d1c9491c71b3 Mon Sep 17 00:00:00 2001 From: Brad Ganley Date: Sun, 26 Feb 2023 05:51:31 -0600 Subject: [PATCH] I am Root. We are Root. --- .bash_aliases | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.bash_aliases b/.bash_aliases index 4495623..fb8a419 100755 --- a/.bash_aliases +++ b/.bash_aliases @@ -100,7 +100,8 @@ countdown() { } # Random quote to avoid making useful commit messages function rgcm() { - message=$(curl -s https://quotes.rest/qod | jq -r '.contents.quotes[0].quote') + api="https://whatthecommit.com/index.txt" + message=$(curl -s $api) if [[ -z $message ]]; then echo "Error: Failed to retrieve a random commit message" return 1