7 lines
219 B
Bash
7 lines
219 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
git add . && git commit -m "Update" && git push
|
||
|
|
||
|
echo "melawy" | beep -f 200 -l 250 -d 100 -r 1 -n -s
|
||
|
notify-send -a "$(basename $(pwd)): Push" -t 999999999 "Update finished" "$(date '+%Y.%m.%d %H:%M:%S')"
|