-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmysetup.html
166 lines (124 loc) · 4.1 KB
/
mysetup.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0">-->
<title>Lainpilled</title>
<link rel="shortcut icon" type="image/png" href="img/transparentlain.png">
<style>
/* Add any additional CSS styles here */
body {
font-family: 'IBM Plex Mono', monospace;
margin: 0;
padding: 0;
color: rgb(73,0,145)
}
header {
background-image: url(https://media.tenor.com/v-d5E2Xnv_sAAAAd/lain-serial-experiments-lain.gif);
color: white;
padding: 10px;
text-align: center;
}
nav {
background-color: #072733ff;
padding: 10px;
text-align: center;
}
nav a {
color: #fff;
text-decoration: none;
padding: 5px 10px;
}
nav a:hover {
background-color: rgb(73, 0, 145);
}
main {
background-image: url(img/stars.gif);
color: white;
padding-left: 150px;
padding-right: 150px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
footer {
background-color: #072733ff;
color: #fff;
padding: 10px;
text-align: center;
}
.image-container {
display: grid;
grid-template-rows: repeat(auto-fit, minmax(150px, 10fr));
gap: 10px;
justify-content: center;
}
</style>
</head>
<body>
<header>
<h1>My Setup</h1>
<br><br><br><br><br><br><br><br><br><br><br>
<h2>Software and hardware I use</h2>
</header>
<nav>
<a href="index.html">Home</a>
<a href="linkspage.html">Links</a>
<a href="picspage.html">Pictures</a>
<a href="musicpage.html">Music</a>
</nav>
<main>
<p><center>♪ Background Music: Duvet (acoustic) - Bôa ♪</center></p>
<br><br><br>
<h2><u>Computer Specs</u></h2>
<h2>Operating system: Endeavour OS</h2>
<h2>CPU: Intel i5 12600k</h2>
<h2>GPU: AMD Radeon RX6700XT</h2>
<h2>64 GB ddr4 ram</h2>
<br>
<h2><u>Peripherals</u></h2>
<h2>Mouse: Logitech M575 + Logitech G Pro Superlight</h2>
<h2>Keyboard: HHKB Professional Hybrid + Logitech G19</h2>
<h2>Monitor 1: LG 32GN63T</h2>
<h2>Monitor 2: Sony SDM-HS75</h2>
<br>
<h2><u>Audio Setup</u></h2>
<h2>Dac: Ifi Zen Dac V1</h2>
<h2>IEMs: Tinhifi P1</h2>
<br>
<h2><u>Laptop list</u></h2>
<h2>Thinkpad T440s (Linux Mint Debian edition)</h2>
<h2>Thinkpad T480 (Fedora 40)(main school laptop)</h2>
<h2>Thinkpad T430 (Endeavour OS)</h2>
<h2>Thinkpad T43 (AntiX 32-bit)</h2>
<h2>2008ish Polycarbonate MacBook (Debain 12)</h2>
<h2>Microsoft Surface Pro 1 (Windows 8)(my first personal computer)</h2>
<h2>Broken Ivy Bridge HP Elitebook</h2>
<br>
<h2><u>Software list</u></h2>
<h2>Desktop Environment: KDE Plasma 6.1</h2>
<h2>Text Editor: Gnu Emacs + NeoVim</h2>
<h2>Broswer: LibreWolf + Vivaldi</h2>
<h2>Music Player: Strawberry and Audacious</h2>
<h2>Video Player: mpv</h2>
<h2>Terminal Emulator: Kitty</h2>
<h2>File Explorer: Dolphin</h2>
<h2>Video Editing Software: Kdenlive</h2>
<h2>Disc Burning Software: K3B</h2>
<h2>Note Taking: Gnu Emacs or Gnote</h2>
<h2>Office Suite: Libreoffice</h2>
<h2>Image Editing Software: Krita + Gimp</h2>
<h2>Drawing program: Inkscape + Krita</h2>
<br><br><br><br>
</main>
<footer>
<p>🄯 2024 Lainpilled. <a href="https://github.com/primalxaxa/lainwebsite">Source Code</a></p>
<p>Monero XMR: 454c2q6ZesJj7NiMgxwH8Gc1wTqExptJHChtuXb6sMUw2575LZ2P6AmKpLh5LB9Ldp8amPWHo8xmbGVqaNSVp3JJMhQ46My</p>
<p>Bitcoin BTC: bc1q4gtqxk7ltvz4zplz95mv254yd0v626fzqw8mdl</p>
</footer>
<audio autoplay loop>
<source src="music/Duvet_acoustic.mp3" type="audio/mpeg">
Your browser sucks and doesn't support my background music.
</audio>
</body>
</html>