all repos — site @ bd027c1d7b8b78524b5d7ec5b3ff5571df953b18

source for my site, found at icyphox.sh

Add uses page
Anirudh Oppiliappan x@icyphox.sh
Mon, 07 Dec 2020 19:19:11 +0530
commit

bd027c1d7b8b78524b5d7ec5b3ff5571df953b18

parent

01526772eb9929ffa5a13c54d95001a8f074ce78

M config.yamlconfig.yaml

@@ -1,5 +1,5 @@

title: icyphox's blog -header: "<a href=/>← all posts</a>" +header: "<a href=/>← back</a>" siteurl: "https://icyphox.sh" rssprefixurl: "https://icyphox.sh/blog/" description: "Computers, security and computer security."

@@ -42,6 +42,12 @@ <h3>about</h3>

<p> More <a href="/about">about me</a> and my work. </p> + + <h3>uses</h3> + <p> + Hardware and software <a href="/uses">that I use</a>. + </p> + <div class="icons"> <a href="https://creativecommons.org/licensjes/by-nc-sa/4.0/">
A drafts/fediblock.md

@@ -0,0 +1,7 @@

+--- +template: +url: fediblock +title: Fediblock considered harmful +subtitle: +date: 2020-12-05 +---
M pages/about.mdpages/about.md

@@ -1,5 +1,5 @@

--- -template: about.html +template: page.html title: about subtitle: Stuff about me, and stuff. ---
M pages/friends.mdpages/friends.md

@@ -1,5 +1,5 @@

--- -template: about.html +template: page.html title: friends subtitle: My friends and internet bros. ---
A pages/uses.md

@@ -0,0 +1,54 @@

+--- +template: page.html +title: uses +subtitle: Uses this. +--- + +# Uses this. + +I often get asked about my computing setup -- so I created this page to link it +whenever. Also because I've seen it on other sites, and I don't want to miss +out. + +## hardware + +**HP Envy 13 (2017)**: 13.3" FHD, i5 8250u, 8GB RAM, 256GB SSD. This is +my primarily computing device. A comfy machine, fairly future-proof +machine that happens to support Linux/BSD incredibly well +out-of-the-box. + +**Ducky One 2 SF**: 65% mechanical keyboard, Cherry MX Speed Silver +switches. I've written about it in detail [here](/blog/ducky-one-2). + +**Logitech M221**: An el cheapo wireless mouse that mouses just enough. + +**Bose Soundsport Wired**: Wired earphones that sound good enough, and fit +well. I also have their wireless model, but don't use them with my laptop. + +**OnePlus 6T**: Great phone for the price (SD 845, 8GB/128GB) -- running +OmniROM microG. + +**iPad (6th generation)**: A very sophisticated e-reader. I must admit -- Apple +Books offers a very nice reading experience. + +## software + +**OpenBSD**: Fantastic OS by fantastic devs. What's not to love? Also read +[OpenBSD on the HP Envy 13](/blog/openbsd-hp-envy). + +**cwm**: The Calm Window Manager. The best out-of-the-box experience you can +get in a window manager. Period. + +**st**: No BS terminal emulator. I use the "ligatures", "copyurl" and "bold is +not bright" patches. + +**tmux**: Most of my actual window management happens here. I usually have +3 - 4 workspaces -- general throwaway terminals, work, music and IRC. It also +handles scrollback for me, so that's nice. + +**cmus**: With [cmusfm](https://github.com/Arkq/cmusfm) for music. + +**weechat**: IRC client that's infinitely riceable. + +And the [dotfiles](https://github.com/icyphox/dotfiles) for all software +mentioned, and more.
M static/style.cssstatic/style.css

@@ -78,9 +78,9 @@ color: var(--dark);

} -article a, a:hover { +.sitemap a, article a, a:hover { color: inherit; - background: 0; + background: 0; text-decoration: underline; outline: 0; }