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