-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sync-data.ps1
25 lines (20 loc) · 917 Bytes
/
sync-data.ps1
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
function auto-git-commit() {
git add .
git commit -m "Auto commit"
git pull
git push
}
cd E:\Music\
spotdl sync https://music.youtube.com/browse/VLPLg3vjVhK1vnYQWB26nwADGqEf2xHzgSZR --save-file data.spotdl --audio youtube-music --bitrate auto --sponsor-block --generate-lrc
cd -
cd C:\Users\master\repos\vndmp4\davinci-resolve
auto-git-commit
cd C:\Users\master\repos\vndmp4\obs-studio\
auto-git-commit
cp $profile ~\repos\vndmp4\dotfiles\
cp C:\Users\master\AppData\Local\nvim\init.lua ~\repos\vndmp4\dotfiles\nvim
cp C:\Users\master\.gitconfig ~\repos\vndmp4\dotfiles\
cp C:\Users\master\AppData\Local\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\settings.json ~\repos\vndmp4\dotfiles\windows-terminal\
cp C:\Users\master\AppData\Roaming\Mozilla\Firefox\Profiles\3wr0grx7.default-release\user.js ~\repos\vndmp4\dotfiles\
cd C:\Users\master\repos\vndmp4\dotfiles
auto-git-commit