summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
Diffstat (limited to 'content')
-rw-r--r--content/openbsd/_index.md15
-rw-r--r--content/openbsd/screenshot.md20
2 files changed, 0 insertions, 35 deletions
diff --git a/content/openbsd/_index.md b/content/openbsd/_index.md
deleted file mode 100644
index 09d8c6e..0000000
--- a/content/openbsd/_index.md
+++ /dev/null
@@ -1,15 +0,0 @@
----
-title: 'OpenBSD'
-date: 2024-12-05T01:19:48-05:00
-draft: false
----
-
-Hello! This page is dedicated to my ventures with OpenBSD. I don't really have
-a set plan for this page yet, but I do plan to upload a few scripts I've made
-for OpenBSD here. Also maybe make a few guides as well, we'll see!
-
-<html>
-<a href="/images/OpenBSD_Logo.svg" style="float: right;">
- <img src="/images/OpenBSD_Logo.svg" style="display: block; width: 260px; height: auto;">
-</a>
-</html>
diff --git a/content/openbsd/screenshot.md b/content/openbsd/screenshot.md
deleted file mode 100644
index 4065fc4..0000000
--- a/content/openbsd/screenshot.md
+++ /dev/null
@@ -1,20 +0,0 @@
----
-title: 'Simple Screenshot Script'
-date: 2024-12-05T01:43:04-05:00
-draft: false
-tags: ['Tech', 'Linux', 'OpenBSD']
----
-
-The one annoying issue I had with OpenBSD when I first set it up, was that my
-old screenshot script was incompatible with OpenBSD *(Due to RustC)*.
-And I enjoy a very simple *"suckless"* style screenshot program.
-
-### One line script
-
-And the best part, is that it's a one line script; If that isn't clean code, then I don't know what is.
-
-```
-#!/bin/sh
-
-maim -s --format=bmp -o Pictures/screenshots/$(date +%s).bmp
-```