summaryrefslogtreecommitdiff
path: root/content/openbsd/screenshot.md
diff options
context:
space:
mode:
authorschizoid <schizoidparty@aol.com>2024-12-14 18:25:39 -0500
committerschizoid <schizoidparty@aol.com>2024-12-14 18:25:39 -0500
commit7ea38b988da36b857a622126e463221c44f408e2 (patch)
tree53326e3f9bd3b376ed922f3cbb39972ef5c3bcbd /content/openbsd/screenshot.md
parente823b11ee7a8d56f6bfbe86559d75068bb8aa66f (diff)
Removed 'openbsd' dir
Diffstat (limited to 'content/openbsd/screenshot.md')
-rw-r--r--content/openbsd/screenshot.md20
1 files changed, 0 insertions, 20 deletions
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
-```