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> 29Go to your round about ".config" 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<li>If you somehow don't have one, you should be able to create it.</li> 34</ul> 35</li> 36<li> 37Clone it onto your local system using <a rel="external" href="https://git-scm.com/">Git</a>, 38and <code>cd</code> into it. 39<ul> 40<li> 41The command to clone the repo is <code>git clone 42https://<roundabout-instance.example>/git/<your-username>/.config 43</code>. 44</li> 45<li> 46You can find the remote URL for your repository in the "Information" button. 47Once clicked, a popup will appear and a textbox labled "Clone over HTTP" will 48be in that popup. The URL in there is your remote URL. 49</li> 50<li><code>cd</code> changes your working directory.</li> 51<li>The directory your cloned repo should be in is <code>.config</code>.</li> 52</ul> 53</li> 54<li> 55Copy the Theme CSS of your chosen them into a file named <code>theme.css</code> within this directory. 56<ul> 57<li> 58The Theme CSS can be found by clicking "Theme CSS" link under the theme you chose. 59Then you can simply copy and paste the CSS into your theme.css file. 60</li> 61</ul> 62</li> 63<li> 64Commit and push your changes to your Roundabout instance. 65<ul> 66<li> 67You can do <code>git add .</code>, 68<code>git commit -m "Added theme.css"</code>, then 69<code>git push</code>. 70</li> 71</ul> 72</li> 73<li> 74Congratulations, you can now go to your chosen instance of Roundabout with your 75new theme installed! 76</li> 77</ol> 78</body> 79 80</html> 81