summaryrefslogtreecommitdiff
path: root/content/openbsd/screenshot.md
diff options
context:
space:
mode:
authorschizoid <schizoidparty@aol.com>2024-12-05 01:51:09 -0500
committerschizoid <schizoidparty@aol.com>2024-12-05 01:51:09 -0500
commit4da12d4d56675ad779a635f2ba1b7ecf3e11b1da (patch)
tree15b88c613954bfb8d78b2b0f40be01e93f499acd /content/openbsd/screenshot.md
parent9290da7ede2b2bca69fd80a873029f0d9181388e (diff)
Dirtily drafted out screenshot page
Diffstat (limited to 'content/openbsd/screenshot.md')
-rw-r--r--content/openbsd/screenshot.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/content/openbsd/screenshot.md b/content/openbsd/screenshot.md
new file mode 100644
index 0000000..4065fc4
--- /dev/null
+++ b/content/openbsd/screenshot.md
@@ -0,0 +1,20 @@
+---
+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
+```