-
Notifications
You must be signed in to change notification settings - Fork 0
/
startup.sh
executable file
·39 lines (33 loc) · 1.14 KB
/
startup.sh
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
27
28
29
30
31
32
33
34
35
36
37
38
39
# Insert:
# source ~/startup.sh
# Into:
# ~/.bashrc
# Install nitrogen to have different backgrounds on each monitor
# Then search 'startup applications'
# Click add and add the following command:
#nitrogen --restore
morning="093000"
currTime=`date +"%H%M%S"`
if [[ "$currTime" < "$morning" ]]
then
echo " ';, ';, '';; '';; '.,,
;; ;; ;; ;; ,''
';;;;;;;;;;' .,, ;; ';;;;;;;;;;; ;;;;;;; , ,,
;; ,'' ;; ;; ;; ';;'' '';;,
;; ,,,, ;; ;; ;; ;;
,;;' ';, ;; ;; ;; ,;'
,; ;; ;; ;; , ;; ;; ,;'
'; ;; , ,; '; ;' ,;''';;';, ,;''';;';, ,;'
',;' ''' ';' ';,,;' '' ';,,;' '',, .,;'
"
else
echo "⁽⁽(੭ꐦ •̀Д•́ )੭*⁾⁾ ᑦᵒᔿᵉ ᵒᐢᵎᵎ"
fi
alias c=clear
alias dc=docker-compose
alias os-info=neofetch
function lazygit() {
git add .
git commit -a -m "$*"
git push origin HEAD
}