This repository has been archived by the owner on Apr 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
install.bat
49 lines (45 loc) · 2.82 KB
/
install.bat
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
40
41
42
43
44
45
46
47
48
49
:: This is really bad but I don't really have time to learn batch right now, please forgive me xD
if %1=="Ferdi" (
if %2=="all" (
mklink "%AppData%\Ferdi\recipes\instagram\darkmode.css" "instagram\darkmode.css" && echo "Installed Instagram theme successfully"
mklink "%AppData%\Ferdi\recipes\messenger\darkmode.css" "messenger\darkmode.css" && echo "Installed Messenger theme successfully"
mklink "%AppData%\Ferdi\recipes\telegram\darkmode.css" "telegram\darkmode.css" && echo "Installed Telegram theme successfully"
mklink "%AppData%\Ferdi\recipes\whatsapp\darkmode.css" "whatsapp\darkmode.css" && echo "Installed WhatsApp theme successfully"
)
else (
mklink "%AppData%\Ferdi\recipes\%2\darkmode.css" "%1\darkmode.css" && echo "Installed %2 theme successfully"
)
)
if %1=="Franz" (
if %2=="all" (
mklink "%AppData%\Franz\recipes\instagram\darkmode.css" "instagram\darkmode.css" && echo "Installed Instagram theme successfully"
mklink "%AppData%\Franz\recipes\messenger\darkmode.css" "messenger\darkmode.css" && echo "Installed Messenger theme successfully"
mklink "%AppData%\Franz\recipes\telegram\darkmode.css" "telegram\darkmode.css" && echo "Installed Telegram theme successfully"
mklink "%AppData%\Franz\recipes\whatsapp\darkmode.css" "whatsapp\darkmode.css" && echo "Installed WhatsApp theme successfully"
)
else (
mklink "%AppData%\Franz\recipes\%2\darkmode.css" "%1\darkmode.css" && echo "Installed %2 theme successfully"
)
)
if %1=="ferdi" (
if %2=="all" (
mklink "%AppData%\Ferdi\recipes\instagram\darkmode.css" "instagram\darkmode.css" && echo "Installed Instagram theme successfully"
mklink "%AppData%\Ferdi\recipes\messenger\darkmode.css" "messenger\darkmode.css" && echo "Installed Messenger theme successfully"
mklink "%AppData%\Ferdi\recipes\telegram\darkmode.css" "telegram\darkmode.css" && echo "Installed Telegram theme successfully"
mklink "%AppData%\Ferdi\recipes\whatsapp\darkmode.css" "whatsapp\darkmode.css" && echo "Installed WhatsApp theme successfully"
)
else (
mklink "%AppData%\Ferdi\recipes\%2\darkmode.css" "%1\darkmode.css" && echo "Installed %2 theme successfully"
)
)
if %1=="franz" (
if %2=="all" (
mklink "%AppData%\Franz\recipes\instagram\darkmode.css" "instagram\darkmode.css" && echo "Installed Instagram theme successfully"
mklink "%AppData%\Franz\recipes\messenger\darkmode.css" "messenger\darkmode.css" && echo "Installed Messenger theme successfully"
mklink "%AppData%\Franz\recipes\telegram\darkmode.css" "telegram\darkmode.css" && echo "Installed Telegram theme successfully"
mklink "%AppData%\Franz\recipes\whatsapp\darkmode.css" "whatsapp\darkmode.css" && echo "Installed WhatsApp theme successfully"
)
else (
mklink "%AppData%\Franz\recipes\%2\darkmode.css" "%1\darkmode.css" && echo "Installed %2 theme successfully"
)
)