forked from abrik1/xpykg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (80 loc) · 2.01 KB
/
index.html
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<html>
<head>
<title>xpykg</title>
<style>
h1{
display: flex;
margin-left: 3%;
text-decoration: underline;
word-wrap: break-word;
color: #cdd6f4;
}
p{
color: #cdd6f4;
display: flex;
margin-left: 3%;
word-wrap: break-word;
}
ul{
color: #cdd6f4;
margin-left: 1.5%;
word-wrap: break-word;
}
.code{
border: 5px solid transparent;
border-radius: 10px;
background-color: rgb(39, 38, 38);
color: #d8d8d8;
padding-left: 5px;
width: 50%;
margin-left: 3%;
}
a{
color: #cdd6f4;
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
body{
background-color: #2f2330;
}
</style>
</head>
<body bgcolor="#604862">
<h1>
xpykg - a package manager for Windows XP
</h1>
<p>
xpykg is a package manager for Windows XP/ReactOS. It downloads files, runs setup.exe, and handles upgrades/uninstallations.
</p>
<h1>
usage:
</h1>
<div class="code">
<code>
help: view this page<br>
install: install {pkg}<br>
list: show all the available apps<br>
search: search {pkg}<br>
sync: sync software databases<br>
uninstall: uninstall {pkg}<br>
upgrade: upgrade packages installed using xpkg<br>
version: show xpkg version
</code>
</div>
<h1>packages:</h1>
<p>
<a href="https://github.com/abrik1/xpykg/blob/main/packages.csv">refer to this table here</a>
</p>
<h1>download:</h1>
<p>
<a href="https://github.com/abrik1/xpykg/blob/main/packages.csv">this page will redirect you to the github downloads page</a>
</p>
<h1>credits:</h1>
<ul>
<li>@retroretard_ for helping out with colors</li>
<li>github - their render of README.md as inspiration</li>
</ul>
</body>
</html