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="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.html">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> 27Go 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><username>/.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> 35Clone it onto your local system using <a rel="external" href="https://git-scm.com/">Git</a>, 36and <code>cd</code> into it. 37<ul> 38<li> 39The command to clone the repo is <code>git clone 40https://<roundabout-instance.example>/git/<your-username>/.config 41</code>. 42</li> 43<li> 44You can find the remote URL for your repository in the "Information" button. 45Once clicked, a popup will appear and a textbox labled "Clone over HTTP" will 46be 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> 53Copy the Theme CSS of your chosen them into a file named <code>theme.css</code> within this directory. 54<ul> 55<li> 56The Theme CSS can be found by clicking "Theme CSS" link under the theme you chose. 57Then you can simply copy and paste the CSS into your theme.css file. 58</li> 59</ul> 60</li> 61<li> 62Commit and push your changes to your Roundabout instance. 63<ul> 64<li> 65You 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> 72Congratulations, you can now go to your chosen instance of Roundabout with your 73new theme installed! 74</li> 75</ol> 76</body> 77 78</html> 79