We are each gifted in a unique and important way. It is our privilege and our adventure to discover our own special light
This commit is contained in:
parent
5a016d14ed
commit
16c4cc9094
@ -98,3 +98,14 @@ countdown() {
|
|||||||
sleep 0.1
|
sleep 0.1
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
# Random quote to avoid making useful commit messages
|
||||||
|
function rgcm() {
|
||||||
|
message=$(curl -s https://quotes.rest/qod | jq -r '.contents.quotes[0].quote')
|
||||||
|
if [[ -z $message ]]; then
|
||||||
|
echo "Error: Failed to retrieve a random commit message"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
git add .
|
||||||
|
git commit -m "$message"
|
||||||
|
echo "Git commit submitted with message: $message"
|
||||||
|
}
|
||||||
|
@ -201,3 +201,4 @@ exec --no-startup-id blueman-applet
|
|||||||
exec_always --no-startup-id nm-applet
|
exec_always --no-startup-id nm-applet
|
||||||
exec_always --no-startup-id parcellite
|
exec_always --no-startup-id parcellite
|
||||||
exec_always --no-startup-id volumeicon
|
exec_always --no-startup-id volumeicon
|
||||||
|
exec --no-startup-id barrier
|
||||||
|
Loading…
Reference in New Issue
Block a user