install.html
HTML document, ASCII text
1
<!DOCTYPE html>
2
<html lang="en-US">
3
4
<head>
5
<title>How to Install</title>
6
<link rel="stylesheet" href="required.css" />
7
<link rel="stylesheet" href="style.css" defer="defer" />
8
<link rel="stylesheet" href="breadcrumbs.css" defer="defer" />
9
<link rel="stylesheet" href="code.css" defer="defer" />
10
<link rel="stylesheet" href="willow.css" defer="defer" />
11
<link rel="stylesheet" href="gully.css" defer="defer" />
12
<link rel="stylesheet" href="redhatmono.css" defer="defer" />
13
<meta charset="UTF-8">
14
<meta name="viewport" content="width=device-width, initial-scale=1.0">
15
<meta http-equiv="X-UA-Compatible" content="ie=edge">
16
<link rel="icon" href="favicon.ico" />
17
</head>
18
19
<body>
20
<nav aria-label="breadcrumbs">
21
<ol>
22
<li><a href="index.xml">index</a></li>
23
<li><a href="install.html" aria-current="location">Installing a Theme</a></li>
24
</ol>
25
</nav>
26
<h1>Installing a Theme</h1>
27
<ol>
28
<li>
29
Go to your round about <code>.config</code> repository.
30
<ul>
31
<li>This is usually private, and only accessable to you.</li>
32
<li>It's usually located at <code><username>/.config</code>.</li>
33
</ul>
34
</li>
35
<li>
36
Clone it onto your local system using Git, and <code>cd</code> into it.
37
<ul>
38
<li>The command to clone the repo is <code>git clone <remote url></code>.</li>
39
<li>
40
You can find the remote URL for your repository in the "Information" button.
41
Once clicked, a popup will appear and a textbox labled "Clone over HTTP" will
42
be in that popup. The URL in there is your remote URL.
43
</li>
44
<li><code>cd</code> changes your working directory.</li>
45
<li>The directory your cloned repo should be in is <code>.config</code></li>
46
</ul>
47
</li>
48
<li>
49
Copy the Theme CSS of your chosen them into a file named <code>theme.css</code> within this directory.
50
<ul>
51
<li>The Theme CSS can be found by clicking "Theme CSS" link under the theme you chose.</li>
52
</ul>
53
</li>
54
<li>
55
Commit back to your <code>.config</code> repository with the new file.
56
<ul>
57
<li>
58
You can do <code>git add .</code>,
59
<code>git commit -m "Added theme.css"</code>, then
60
<code>git push</code>.
61
</li>
62
</ul>
63
</li>
64
<li>
65
Congratulations, you can now go to your chosen instance of Roundabout with your
66
new theme installed!
67
</li>
68
</ol>
69
</body>
70
71
</html>
72