Homepage: https://theme.roundabout-host.com

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 install.html

View raw Download
text/html • 3.02 kiB
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="fonts.css" defer="defer" />
11
<meta charset="UTF-8">
12
<meta name="viewport" content="width=device-width, initial-scale=1.0">
13
<meta http-equiv="X-UA-Compatible" content="ie=edge">
14
<link rel="icon" href="favicon.ico" />
15
</head>
16
17
<body>
18
<nav aria-label="breadcrumbs">
19
<ol>
20
<li><a href="index.xml">index</a></li>
21
<li><a href="install.html" aria-current="location">Installing a Theme</a></li>
22
</ol>
23
</nav>
24
<h1>Installing a Theme</h1>
25
<ol>
26
<li>
27
Go to your round about ".config" repository.
28
<ul>
29
<li>This is usually private, and only accessable to you.</li>
30
<li>It's usually located at <code>&lt;username&gt;/.config</code>.</li>
31
<li>If you somehow don't have one, you should be able to create it.</li>
32
</ul>
33
</li>
34
<li>
35
Clone it onto your local system using <a rel="external" href="https://git-scm.com/">Git</a>,
36
and <code>cd</code> into it.
37
<ul>
38
<li>
39
The command to clone the repo is <code>git clone
40
https://&lt;roundabout-instance.example&gt;/git/&lt;your-username&gt;/.config
41
</code>.
42
</li>
43
<li>
44
You can find the remote URL for your repository in the "Information" button.
45
Once clicked, a popup will appear and a textbox labled "Clone over HTTP" will
46
be in that popup. The URL in there is your remote URL.
47
</li>
48
<li><code>cd</code> changes your working directory.</li>
49
<li>The directory your cloned repo should be in is <code>.config</code>.</li>
50
</ul>
51
</li>
52
<li>
53
Copy the Theme CSS of your chosen them into a file named <code>theme.css</code> within this directory.
54
<ul>
55
<li>
56
The Theme CSS can be found by clicking "Theme CSS" link under the theme you chose.
57
Then you can simply copy and paste the CSS into your theme.css file.
58
</li>
59
</ul>
60
</li>
61
<li>
62
Commit and push your changes to your Roundabout instance.
63
<ul>
64
<li>
65
You can do <code>git add .</code>,
66
<code>git commit -m "Added theme.css"</code>, then
67
<code>git push</code>.
68
</li>
69
</ul>
70
</li>
71
<li>
72
Congratulations, you can now go to your chosen instance of Roundabout with your
73
new theme installed!
74
</li>
75
</ol>
76
</body>
77
78
</html>
79