-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
229 lines (224 loc) · 8.53 KB
/
index2.html
File metadata and controls
229 lines (224 loc) · 8.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<html>
<head>
<title>OS Checklist - A dynamic checklist to help set up computers</title>
<link rel="stylesheet" href="css/pure-min-0.6.0.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<script>
var Tasks = [
/*{
tags: ["Browser", "Installers"],
html: "Install the browser you'll be using for this list.<br />(<a href='https://www.mozilla.org/firefox/new/'>Firefox</a>, <a href='https://www.google.com/chrome/'>Chrome</a>, <a href='http://www.opera.com/'>Opera</a>, <a href='https://www.waterfoxproject.org/'>Waterfox</a>, <a href='https://www.torproject.org/projects/torbrowser.html'>Tor Browser</a>)"
},*/
{
tags: ["Linux", "Pre-installation"],
html: "Set up a swap partition. (Guidelines vary between using half of your RAM or double your RAM for the amount of swap space to create. I recommend no less than 2 GB and no more than 12 GB.)"
},
{
tags: ["Linux", "Pre-installation", "Main disk SSD"],
html: "Set up <code>/home</code> mountpoint on a different disk for more space."
},
{
tags: ["Windows", "Pre-installation", "Main disk SSD"],
html: "Name C:/ partition 'System' and D:/ partition 'Data'."
},
{
tags: ["Linux", "Debian-based"],
html: "Install updates.<br /><code>sudo apt-get update && sudo apt-get upgrade -y</code><br />(Also <code>autoremove</code> and <code>autoclean</code>?)"
},
{
tags: ["Elementary OS"],
html: "Turn off Guest Session. (System Settings -> User Accounts)"
},
{
tags: ["Installers", "Browser"],
html: "Install <a href='https://www.google.com/chrome/'>Google Chrome</a>?",
sub: [
{
tags: ["Windows 10"],
html: "Set Chrome as default browser? (Settings -> System -> Default apps -> Web browser)"
},
{
html: "Configure settings, or sign-in and sync settings."
},
{
html: "While Chrome is running, uncheck 'Let Google Chrome apps run in background' from notification icon."
}
]
},
{
tags: ["Installers", "Browser"],
html: "Install <a href='https://www.mozilla.org/firefox/new'>Mozilla Firefox</a>?",
sub: [
{
tags: ["Windows 10"],
html: "Set Firefox as default browser. (Settings -> System -> Default apps -> Web browser)"
},
{
html: "Configure settings, or use Firefox Sync."
}
]
},
{
tags: ["Installers", "Security"],
html: "Install <a href='http://keepass.info/download.html'>KeePass</a>? (Get Professional Edition! It's just better. Both are free.)",
sub: [
{
html: "Configure settings. (Especailly Advanced -> Automatically save when closing/locking the database)"
}
]
},
{
tags: ["Installers", "Cloud Storage"],
html: "Install <a href='https://www.dropbox.com/downloading'>Dropbox</a>?"
sub: [
{
tags: ["Windows", "Main disk SSD"],
html: "Move Dropbox folder and/or set up selective sync to reduce SSD usage."
},
{
tags: ["VM"],
html: "Set up selective sync to reduce disk usage."
},
{
// tag Windows ?
html: "Stop Dropbox from trying to save PrtScr keypresses by triggering one and clicking \"No Thanks\"."
}
]
},
{
tags: ["Installers", "Virtualization"],
html: "Install <a href='https://www.virtualbox.org/wiki/Downloads'>VirtualBox</a>?",
sub: [
{
tags: ["Windows", "Main disk SSD"],
html: "Move \"VirtualBox VMs\" onto another disk.<br />Open an administrator command prompt and go to Your user profile, then <code>mklink /D \"VirtualBox VMs\" \"[destination]\" to create a directory link</code>."
}
]
},
{
tags: ["Windows", "Installers", "Gaming"],
html: "Install <a href='https://www.gog.com/galaxy'>GOG Galaxy</a>?",
sub: [
{
html: "Settings: Change 'Startup page' to Library (default is Store..)"
},
{
tags: ["Main disk SSD"],
html: "Settings: Change 'Install games to:' to another disk / location."
}
]
},
{
tags: ["Installers", "Gaming"],
html: "Install <a href='http://store.steampowered.com/about/'>Steam</a>?",
sub: [
{
tags: ["Windows", "Main disk SSD"],
html: "Make a 'SteamLibrary' on another disk (or restore an existing SteamLibrary folder)."
}
]
},
{
tags: ["Installers", "Gaming"],
html: "Install <a href='https://itch.io/app'>itch client</a>?",
sub: [
{
tags: ["Windows", "Main disk SSD"],
html: "Preferences (bottom left) -> Make a new install location on a different disk, and make it the default location."
}
]
},
{
tags: ["Windows", "Installers", "Gaming"],
html: "Install <a href='https://uplay.ubi.com/'>Uplay</a>?",
sub: [
{
tags: ["Main disk SSD"],
html: "Settings (top left menu) -> Downloads -> Move installer cache and game installation locations to another disk."
}
]
},
{
tags: ["Installers", "Graphics"],
html: "Install <a href='https://www.gimp.org/downloads/'>GIMP</a>"
},
{
tags: ["Installers", "Graphics"],
html: "Install <a href='https://inkscape.org/en/download/'>Inkscape</a>"
},
{
tags: ["Windows 10"],
html: "Settings -> Personalization -> Start -> Occasionally show suggestions in Start (turn it off! D:)"
},
{
tags: ["Installers", "Instant Messaging"],
html: "Install <a href='https://desktop.telegram.org/'>Telegram</a>?"
},
{
tags: ["Installers", "Instant Messaging"],
html: "Install <a href='https://hexchat.github.io/downloads.html'>HexChat</a>? (Note: No OS X builds available.)"
},
{
tags: ["Installers", "Voice Communications"],
html: "Install <a href='https://www.teamspeak.com/downloads'>TeamSpeak 3</a>?"
},
{
tags: ["Installers", "Utility"],
html: "Install <a href='https://www.rescuetime.com/setup/download'>RescueTime</a>?"
},
{
tags: ["Windows 10"],
html: "Disable full-screen update notifications.<br/><br/>Open an elavated command prompt and execute:<br/>\
<code>cd /d \"%Windr%\System32\"\
takeown /F MusNotification.exe\
icacls MusNotification.exe /deny Everyone:(X)\
takeown /F MusNotificationUx.exe\
icacls MusNotificationUx.exe /deny Everyone:(X)</code><br/><br/><a href='https://www.reddit.com/r/Windows10/comments/3j8e2s/how_do_i_disable_this_fullscreen_update/cz9z0t2'>source</a>"
},
{
tags: ["Installers", "Utility"],
html: "Install <a href='https://www.java.com/en/download/manual.jsp'>Java Runtime Environment (JRE)</a>?"
},
{
tags: ["Linux", "Server"],
html: "Install <a href='https://certbot.eff.org/#pip-nginx'>CertBot</a>? (<code>wget https://dl.eff.org/certbot-auto && chmod a+x certbot-auto && mv ./certbot-auto /bin/certbot-auto</code>)"
},
{
tags: ["Installers", "Editors"],
html: "Install <a href='https://notepad-plus-plus.org/download/'>Notepad++</a>?"
},
{
tags: ["Installers", "Editors"],
html: "Install <a href='https://atom.io/'>Atom</a>?"
},
{
tags: ["Windows", "Installers", "Graphics"],
html: "Install <a href='https://www.microsoft.com/en-us/download/details.aspx?id=36180'>Microsoft Expression Design 4</a>?"
}
];
var Games = [
{
html: "<a href='http://www.flightgear.org/download/'>FlightGear</a> (flight simulator)"
},
/*{
html: "<a href='https://www.factorio.com/download'>Factorio</a>"
},*/
];
</script>
</head>
<body>
<table class="pure-table pure-table-horizontal centered">
<tbody>
<tr>
<th colspan="4">Current Task:</th>
</tr>
<tr id="current"></tr>
<tr>
<th colspan="4">Skipped Tasks:</th>
</tr>
</tbody>
<tfoot id="skipped"></tfoot>
</table>
</body>
</html>