-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanger.sh
More file actions
26 lines (22 loc) · 687 Bytes
/
anger.sh
File metadata and controls
26 lines (22 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env bash
# Source it and have fu... anger management
alias goddamn="sudo "
alias git-punch="git push --force"
alias tableflip="goddamn shutdown now"
alias please="sudo !!"
# https://github.com/nvbn/thefuck
alias get-fucked="pip install thefuck"
# 1 minute breathing exercise:
breathe() {
for i in {1..4}; do
printf "\nBreathe in"
for j in {1..4}; do printf "."; sleep 1; done
printf " hold"
for j in {1..4}; do printf "."; sleep 1; done
printf " breathe out"
for j in {1..4}; do printf "."; sleep 1; done
printf " hold"
for j in {1..4}; do printf "."; sleep 1; done
done
echo "\n\nGood, now breathe normally and hopefully you feel more relaxed."
}