blob: 986a3e4ee3d991fff07530dab9d2f8fb41c00df4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
sudo nixos-rebuild switch
cd /home/preston/src/hyprnixmacs
git add "./"
git commit -m "$1"
git push origin main
cd /home/preston/org/website
git add "./"
git commit -m "$2"
git push origin main
rsync -azvP ~/website_html/ root@nullring.xyz:/usr/share/nginx/ret2pop/
aspell -d en dump master | aspell -l en expand > ~/.local/share/my.dict
#cd /home/preston/org/website/
#git add .
#git commit "$2"
#git push origin main
|