-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuncompressed.html
37 lines (33 loc) · 1.06 KB
/
uncompressed.html
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
<body onload="
let savedSettings = JSON.parse(window.localStorage.getItem('settings'))
if (savedSettings && savedSettings.uncompressedImages === false) {
let savedSettings = JSON.parse(window.localStorage.getItem('settings'))
savedSettings.uncompressedImages = true
savedSettings = JSON.stringify(savedSettings)
window.localStorage.setItem('settings', savedSettings)
} else if (!savedSettings) {
const settings = {
version: 1.3,
backgroundImage: true,
bigTaskbar: false,
hiddenBar: true,
dropShadow: false,
dropShadowBlur: '3',
textBrightness: '1.25',
topBar: 'false',
dropShadowColor: 'black',
dropShadowX: '2',
dropShadowY: '2',
maxTextOpacity: 1,
music: 'none',
sparksPlaying: true,
sparksSpeed: -36,
sparksTick: -20,
uncompressedImages: false,
volume: 50,
console: ''
}
window.localStorage.setItem('settings', JSON.stringify(settings))
}
window.open('https://daysuntileldenringrelease.netlify.app/', '_self')
">