added batmon
This commit is contained in:
parent
1ffdc145f5
commit
0136bb1dab
14 changed files with 710 additions and 73 deletions
24
atom.xml
24
atom.xml
|
@ -4,8 +4,30 @@
|
|||
<link rel="self" type="application/atom+xml" href="https://paulwilde.uk/atom.xml"/>
|
||||
<link rel="alternate" type="text/html" href="https://paulwilde.uk"/>
|
||||
<generator uri="https://www.getzola.org/">Zola</generator>
|
||||
<updated>2024-07-29T14:18:00+00:00</updated>
|
||||
<updated>2024-07-29T21:16:00+00:00</updated>
|
||||
<id>https://paulwilde.uk/atom.xml</id>
|
||||
<entry xml:lang="en">
|
||||
<title>BatMon</title>
|
||||
<published>2024-07-29T21:16:00+00:00</published>
|
||||
<updated>2024-07-29T21:16:00+00:00</updated>
|
||||
|
||||
<author>
|
||||
<name>
|
||||
|
||||
Unknown
|
||||
|
||||
</name>
|
||||
</author>
|
||||
|
||||
<link rel="alternate" type="text/html" href="https://paulwilde.uk/ponderings/batmon/"/>
|
||||
<id>https://paulwilde.uk/ponderings/batmon/</id>
|
||||
|
||||
<summary type="html"><p>A simple battery monitor tool that can notify you on battery status changes for FreeBSD.<br />
|
||||
Inspired by but in no way similar to <a href="https://github.com/electrickite/batsignal">batsignal</a> - inspiring the basic function only.
|
||||
Written in pure <a href="https://paulwilde.uk/ponderings/batmon/https/nim-lang.org">Nim</a>.</p>
|
||||
</summary>
|
||||
|
||||
</entry>
|
||||
<entry xml:lang="en">
|
||||
<title>TootInstall</title>
|
||||
<published>2024-07-29T14:18:00+00:00</published>
|
||||
|
|
218
ponderings/batmon/index.html
Normal file
218
ponderings/batmon/index.html
Normal file
|
@ -0,0 +1,218 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>BatMon | Paul's Site of Stuff</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
|
||||
<meta name="robots" content="noodp"/>
|
||||
|
||||
<link rel="stylesheet" href="https://paulwilde.uk/style.css">
|
||||
<link rel="stylesheet" href="https://paulwilde.uk/color/orange.css">
|
||||
|
||||
<link rel="stylesheet" href="https://paulwilde.uk/color/background_blue.css">
|
||||
|
||||
<link rel="stylesheet" href="https://paulwilde.uk/font-hack-subset.css">
|
||||
|
||||
<meta name="description" content="">
|
||||
|
||||
<meta property="og:description" content="">
|
||||
<meta property="og:title" content="BatMon | Paul's Site of Stuff">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:url" content="https://paulwilde.uk/ponderings/batmon/">
|
||||
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:description" content="">
|
||||
<meta name="twitter:title" content="BatMon | Paul's Site of Stuff">
|
||||
<meta property="twitter:domain" content="paulwilde.uk">
|
||||
<meta property="twitter:url" content="https://paulwilde.uk/ponderings/batmon/">
|
||||
|
||||
|
||||
|
||||
<link rel="alternate" type="application/atom+xml" title="RSS" href="https://paulwilde.uk/atom.xml">
|
||||
|
||||
|
||||
<link rel="shortcut icon" type="image/png" href="/favicon.png">
|
||||
|
||||
<script defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||
|
||||
</head>
|
||||
<body class="">
|
||||
<div class="container">
|
||||
|
||||
<header class="header">
|
||||
<div class="header__inner">
|
||||
<div class="header__logo">
|
||||
|
||||
<a href="https://paulwilde.uk" style="text-decoration: none;">
|
||||
<div class="logo">
|
||||
|
||||
Hello, I'm Paul
|
||||
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<nav class="menu">
|
||||
<ul class="menu__inner">
|
||||
<li><a href="/">home</a></li>
|
||||
|
||||
<li><a href="/aboutme">about me</a></li>
|
||||
|
||||
<li><a href="/ponderings">ponderings</a></li>
|
||||
|
||||
<li><a href="/iuse">i use …</a></li>
|
||||
|
||||
<li><a href="/tags">tags</a></li>
|
||||
|
||||
<li><a href="/atom.xml">rss</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
</header>
|
||||
|
||||
|
||||
<div class="post">
|
||||
|
||||
<h1 class="post-title"><a href="https://paulwilde.uk/ponderings/batmon/">BatMon</a></h1>
|
||||
<div class="post-meta-inline">
|
||||
|
||||
<span class="post-date">
|
||||
2024-07-29
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<span class="post-tags-inline">
|
||||
:: tags:
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/development/">#development</a>
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/freebsd/">#freebsd</a>
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/linux/">#linux</a>
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/nim/">#nim</a>
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/tools/">#tools</a></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="sourcecode">
|
||||
<a href="https://codeberg.org/pswilde/batmon" target="_blank">source code</a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="post-content">
|
||||
<p>A simple battery monitor tool that can notify you on battery status changes for FreeBSD.<br />
|
||||
Inspired by but in no way similar to <a href="https://github.com/electrickite/batsignal">batsignal</a> - inspiring the basic function only.
|
||||
Written in pure <a href="https://paulwilde.uk/ponderings/batmon/https/nim-lang.org">Nim</a>.</p>
|
||||
<span id="continue-reading"></span><h2 id="requirements">Requirements</h2>
|
||||
<h3 id="run-requirements">Run Requirements</h3>
|
||||
<ul>
|
||||
<li><code>apm</code></li>
|
||||
<li><code>notify-send</code></li>
|
||||
</ul>
|
||||
<h3 id="build-requirements">Build Requirements</h3>
|
||||
<ul>
|
||||
<li><code>nim</code></li>
|
||||
<li><code>nimble</code></li>
|
||||
</ul>
|
||||
<h2 id="installation">Installation</h2>
|
||||
<p>To install into your <code>.nimble/bin</code> directory</p>
|
||||
<pre data-lang="sh" style="background-color:#212121;color:#eeffff;" class="language-sh "><code class="language-sh" data-lang="sh"><span style="color:#82aaff;">git clone https://codeberg.org/pswilde/batmon </span><span style="color:#89ddff;">&& </span><span style="color:#82aaff;">cd batmon
|
||||
</span><span style="color:#82aaff;">nimble install
|
||||
</span></code></pre>
|
||||
<h2 id="running">Running</h2>
|
||||
<pre data-lang="sh" style="background-color:#212121;color:#eeffff;" class="language-sh "><code class="language-sh" data-lang="sh"><span style="font-style:italic;color:#4a4a4a;"># To run the daemon server notifier, just run:
|
||||
</span><span style="color:#82aaff;">batmon</span><span style="color:#89ddff;"> -</span><span style="color:#f78c6c;">d
|
||||
</span><span>
|
||||
</span><span style="font-style:italic;color:#4a4a4a;"># To run once and just show battery level, run:
|
||||
</span><span style="color:#82aaff;">batmon</span><span style="color:#89ddff;"> -</span><span style="color:#f78c6c;">o
|
||||
</span></code></pre>
|
||||
<h2 id="using">Using</h2>
|
||||
<p>When importing Batmon as a module you have access to the <code>get_battery_status()</code>
|
||||
procedure which will return a <code>Battery</code> object you can use elsewhere.</p>
|
||||
<h3 id="battery-type">Battery Type</h3>
|
||||
<pre data-lang="nim" style="background-color:#212121;color:#eeffff;" class="language-nim "><code class="language-nim" data-lang="nim"><span style="color:#c792ea;">type
|
||||
</span><span> </span><span style="color:#ffcb6b;">Battery</span><span>* = </span><span style="color:#c792ea;">object
|
||||
</span><span> status*: </span><span style="color:#ffcb6b;">Status
|
||||
</span><span> charge*: </span><span style="font-style:italic;color:#c792ea;">float
|
||||
</span><span> </span><span style="color:#ffcb6b;">Status</span><span>* = </span><span style="color:#c792ea;">enum
|
||||
</span><span> </span><span style="color:#ffcb6b;">High</span><span>,
|
||||
</span><span> </span><span style="color:#ffcb6b;">Low</span><span>,
|
||||
</span><span> </span><span style="color:#ffcb6b;">Critical</span><span>,
|
||||
</span><span> </span><span style="color:#ffcb6b;">Charging</span><span>,
|
||||
</span><span> </span><span style="color:#ffcb6b;">Unknown
|
||||
</span></code></pre>
|
||||
<p>Also, you have access to the notification handler module, where you can build
|
||||
and send your own notifications:</p>
|
||||
<pre data-lang="nim" style="background-color:#212121;color:#eeffff;" class="language-nim "><code class="language-nim" data-lang="nim"><span style="color:#c792ea;">var</span><span> n = </span><span style="color:#82aaff;">newNotification</span><span>(</span><span style="color:#c3e88d;">"Title"</span><span>, </span><span style="color:#c3e88d;">"Body"</span><span>, urgency = </span><span style="color:#ffcb6b;">Normal</span><span> , timeout = </span><span style="color:#f78c6c;">5000</span><span>)
|
||||
</span><span style="color:#c792ea;">discard</span><span> n.</span><span style="color:#82aaff;">send</span><span>()
|
||||
</span></code></pre>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="pagination">
|
||||
<div class="pagination__title">
|
||||
<span class="pagination__title-h">Thanks for reading! Read other posts?</span>
|
||||
<hr />
|
||||
</div>
|
||||
<div class="pagination__buttons">
|
||||
<span class="button previous">
|
||||
<a href="https://paulwilde.uk/ponderings/tootinstall-concept/">
|
||||
<span class="button__icon">←</span>
|
||||
<span class="button__text">TootInstall</span>
|
||||
</a>
|
||||
</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<footer class="footer">
|
||||
<div class="footer__inner">
|
||||
|
||||
<a href="https://notnull.space/@paul" rel="me">fediverse (gts)</a>
|
||||
|
||||
<a href="https://snac.notnull.space/paul" rel="me">fediverse (snac)</a>
|
||||
|
||||
<a href="https://codeberg.org/pswilde" rel="me">codeberg</a>
|
||||
|
||||
<a href="https://keyoxide.org/85633E30514CC1932E4268460ED12CF710BC42CA" rel="me">keyoxide</a>
|
||||
|
||||
</div>
|
||||
<div class="footer__inner">
|
||||
<div class="copyright">
|
||||
<span>©
|
||||
2024
|
||||
Paul Wilde</span>
|
||||
<span class="copyright-theme">
|
||||
<span class="copyright-theme-sep">:: </span>
|
||||
Theme: <a href="https://github.com/pawroman/zola-theme-terminimal/">Terminimal</a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -81,6 +81,46 @@
|
|||
<div class="posts">
|
||||
<div class="post on-list">
|
||||
|
||||
<h1 class="post-title"><a href="https://paulwilde.uk/ponderings/batmon/">BatMon</a></h1>
|
||||
<div class="post-meta-inline">
|
||||
|
||||
<span class="post-date">
|
||||
2024-07-29
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<span class="post-tags-inline">
|
||||
:: tags:
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/development/">#development</a>
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/freebsd/">#freebsd</a>
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/linux/">#linux</a>
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/nim/">#nim</a>
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/tools/">#tools</a></span>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="post-content">
|
||||
<p>A simple battery monitor tool that can notify you on battery status changes for FreeBSD.<br />
|
||||
Inspired by but in no way similar to <a href="https://github.com/electrickite/batsignal">batsignal</a> - inspiring the basic function only.
|
||||
Written in pure <a href="https://paulwilde.uk/ponderings/batmon/https/nim-lang.org">Nim</a>.</p>
|
||||
|
||||
</div>
|
||||
<div>
|
||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||
<a class="read-more button" href="https://paulwilde.uk/ponderings/batmon/">
|
||||
<span class="button__text">Read more</span>
|
||||
<span class="button__icon">↩︎</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="post on-list">
|
||||
|
||||
<h1 class="post-title"><a href="https://paulwilde.uk/ponderings/tootinstall-concept/">TootInstall</a></h1>
|
||||
<div class="post-meta-inline">
|
||||
|
||||
|
@ -396,45 +436,6 @@ which are selectable options in dmenu.</p>
|
|||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="post on-list">
|
||||
|
||||
<h1 class="post-title"><a href="https://paulwilde.uk/ponderings/thisisnotmyemail/">thisisnotmy.email</a></h1>
|
||||
<div class="post-meta-inline">
|
||||
|
||||
<span class="post-date">
|
||||
2021-11-13
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<span class="post-tags-inline">
|
||||
:: tags:
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/development/">#development</a>
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/email/">#email</a></span>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="post-content">
|
||||
<p>I run the <a href="https://thisisnotmy.email">thisisnotmy.email</a> email service.</p>
|
||||
<h2 id="what-s-it-all-about">What's it all about?</h2>
|
||||
<p>Don’t you hate it when people, businesses, random telephone callers, etc. ask you for your email address out of the blue under the ruse of “providing you a better service”?
|
||||
It's early days but I'm hoping to be able to offer <em>something</em> for people to
|
||||
use eventually.</p>
|
||||
|
||||
</div>
|
||||
<div>
|
||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||
<a class="read-more button" href="https://paulwilde.uk/ponderings/thisisnotmyemail/">
|
||||
<span class="button__text">Read more</span>
|
||||
<span class="button__icon">↩︎</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="pagination">
|
||||
<div class="pagination__buttons">
|
||||
|
|
|
@ -81,6 +81,45 @@
|
|||
<div class="posts">
|
||||
<div class="post on-list">
|
||||
|
||||
<h1 class="post-title"><a href="https://paulwilde.uk/ponderings/thisisnotmyemail/">thisisnotmy.email</a></h1>
|
||||
<div class="post-meta-inline">
|
||||
|
||||
<span class="post-date">
|
||||
2021-11-13
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<span class="post-tags-inline">
|
||||
:: tags:
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/development/">#development</a>
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/email/">#email</a></span>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="post-content">
|
||||
<p>I run the <a href="https://thisisnotmy.email">thisisnotmy.email</a> email service.</p>
|
||||
<h2 id="what-s-it-all-about">What's it all about?</h2>
|
||||
<p>Don’t you hate it when people, businesses, random telephone callers, etc. ask you for your email address out of the blue under the ruse of “providing you a better service”?
|
||||
It's early days but I'm hoping to be able to offer <em>something</em> for people to
|
||||
use eventually.</p>
|
||||
|
||||
</div>
|
||||
<div>
|
||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||
<a class="read-more button" href="https://paulwilde.uk/ponderings/thisisnotmyemail/">
|
||||
<span class="button__text">Read more</span>
|
||||
<span class="button__icon">↩︎</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="post on-list">
|
||||
|
||||
<h1 class="post-title"><a href="https://paulwilde.uk/ponderings/peanut-butter/">Peanut Butter Recipe</a></h1>
|
||||
<div class="post-meta-inline">
|
||||
|
||||
|
@ -403,32 +442,6 @@ Has additional Vue.js implementation for news and exchange rates updates.</p>
|
|||
<p>A local IT business website detailing available services.
|
||||
Our business website.</p>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="post on-list">
|
||||
|
||||
<h1 class="post-title"><a href="https://paulwilde.uk/ponderings/ltos/">The Lost Tin Opener Society</a></h1>
|
||||
<div class="post-meta-inline">
|
||||
|
||||
<span class="post-date">
|
||||
2021-03-31
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<span class="post-tags-inline">
|
||||
:: tags:
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/website/">#website</a></span>
|
||||
|
||||
|
||||
|
||||
<div class="post-content">
|
||||
<p>A spoof single page animation website of a secret society dedicated to finding all
|
||||
lost tin openers.</p>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
|
@ -81,6 +81,32 @@
|
|||
<div class="posts">
|
||||
<div class="post on-list">
|
||||
|
||||
<h1 class="post-title"><a href="https://paulwilde.uk/ponderings/ltos/">The Lost Tin Opener Society</a></h1>
|
||||
<div class="post-meta-inline">
|
||||
|
||||
<span class="post-date">
|
||||
2021-03-31
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<span class="post-tags-inline">
|
||||
:: tags:
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/website/">#website</a></span>
|
||||
|
||||
|
||||
|
||||
<div class="post-content">
|
||||
<p>A spoof single page animation website of a secret society dedicated to finding all
|
||||
lost tin openers.</p>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="post on-list">
|
||||
|
||||
<h1 class="post-title"><a href="https://paulwilde.uk/ponderings/faces/">Noisy Faces</a></h1>
|
||||
<div class="post-meta-inline">
|
||||
|
||||
|
|
|
@ -329,6 +329,13 @@ humorous thought experiment and is in no way intended to make it to production.<
|
|||
</a>
|
||||
</span>
|
||||
|
||||
|
||||
<span class="button next">
|
||||
<a href="https://paulwilde.uk/ponderings/batmon/">
|
||||
<span class="button__text">BatMon</span>
|
||||
<span class="button__icon">→</span>
|
||||
</a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
10
sitemap.xml
10
sitemap.xml
|
@ -14,6 +14,10 @@
|
|||
<loc>https://paulwilde.uk/ponderings/basicdough/</loc>
|
||||
<lastmod>2021-04-01T11:41:38+01:00</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://paulwilde.uk/ponderings/batmon/</loc>
|
||||
<lastmod>2024-07-29T21:16:00</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://paulwilde.uk/ponderings/bedfordandco/</loc>
|
||||
<lastmod>2021-04-01T10:54:15+01:00</lastmod>
|
||||
|
@ -131,6 +135,9 @@
|
|||
<url>
|
||||
<loc>https://paulwilde.uk/tags/food/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://paulwilde.uk/tags/freebsd/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://paulwilde.uk/tags/funny/</loc>
|
||||
</url>
|
||||
|
@ -143,6 +150,9 @@
|
|||
<url>
|
||||
<loc>https://paulwilde.uk/tags/iuse/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://paulwilde.uk/tags/linux/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://paulwilde.uk/tags/me/</loc>
|
||||
</url>
|
||||
|
|
|
@ -84,7 +84,7 @@ Tag: development | Paul's Site of Stuff</title>
|
|||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
tag: #development
|
||||
(5 posts)
|
||||
(6 posts)
|
||||
</h1>
|
||||
|
||||
<a href="https://paulwilde.uk/tags/">
|
||||
|
@ -93,6 +93,20 @@ Tag: development | Paul's Site of Stuff</title>
|
|||
|
||||
|
||||
<ul><li class="post-list">
|
||||
<a href="https://paulwilde.uk/ponderings/batmon/">
|
||||
<span class="post-date">2024-07-29T21:16:00</span>
|
||||
:: <span class="post-list-title">BatMon</span></a>
|
||||
|
||||
<span class="post-tags-inline">
|
||||
::
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/development/">#development</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/freebsd/">#freebsd</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/linux/">#linux</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/nim/">#nim</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/tools/">#tools</a></span>
|
||||
|
||||
</li>
|
||||
<li class="post-list">
|
||||
<a href="https://paulwilde.uk/ponderings/geminicss/">
|
||||
<span class="post-date">2023-02-22T20:57:13+00:00</span>
|
||||
:: <span class="post-list-title">Gemini.css</span></a>
|
||||
|
|
143
tags/freebsd/index.html
Normal file
143
tags/freebsd/index.html
Normal file
|
@ -0,0 +1,143 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>
|
||||
Tag: freebsd | Paul's Site of Stuff</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
|
||||
<meta name="robots" content="noodp"/>
|
||||
|
||||
<link rel="stylesheet" href="https://paulwilde.uk/style.css">
|
||||
<link rel="stylesheet" href="https://paulwilde.uk/color/orange.css">
|
||||
|
||||
<link rel="stylesheet" href="https://paulwilde.uk/color/background_blue.css">
|
||||
|
||||
<link rel="stylesheet" href="https://paulwilde.uk/font-hack-subset.css">
|
||||
|
||||
|
||||
|
||||
|
||||
<meta name="description" content="All posts tagged freebsd">
|
||||
|
||||
<meta property="og:description" content="All posts tagged freebsd">
|
||||
<meta property="og:title" content="freebsd | Paul's Site of Stuff">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://paulwilde.uk/tags/freebsd/">
|
||||
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:description" content="All posts tagged freebsd">
|
||||
<meta name="twitter:title" content="freebsd | Paul's Site of Stuff">
|
||||
<meta property="twitter:domain" content="paulwilde.uk">
|
||||
<meta property="twitter:url" content="https://paulwilde.uk/tags/freebsd/">
|
||||
|
||||
|
||||
|
||||
<link rel="alternate" type="application/atom+xml" title="RSS" href="https://paulwilde.uk/atom.xml">
|
||||
|
||||
|
||||
<link rel="shortcut icon" type="image/png" href="/favicon.png">
|
||||
|
||||
<script defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||
|
||||
</head>
|
||||
<body class="">
|
||||
<div class="container">
|
||||
|
||||
<header class="header">
|
||||
<div class="header__inner">
|
||||
<div class="header__logo">
|
||||
|
||||
<a href="https://paulwilde.uk" style="text-decoration: none;">
|
||||
<div class="logo">
|
||||
|
||||
Hello, I'm Paul
|
||||
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<nav class="menu">
|
||||
<ul class="menu__inner">
|
||||
<li><a href="/">home</a></li>
|
||||
|
||||
<li><a href="/aboutme">about me</a></li>
|
||||
|
||||
<li><a href="/ponderings">ponderings</a></li>
|
||||
|
||||
<li><a href="/iuse">i use …</a></li>
|
||||
|
||||
<li><a href="/tags">tags</a></li>
|
||||
|
||||
<li><a href="/atom.xml">rss</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
</header>
|
||||
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
tag: #freebsd
|
||||
(1 post)
|
||||
</h1>
|
||||
|
||||
<a href="https://paulwilde.uk/tags/">
|
||||
Show all tags
|
||||
</a>
|
||||
|
||||
|
||||
<ul><li class="post-list">
|
||||
<a href="https://paulwilde.uk/ponderings/batmon/">
|
||||
<span class="post-date">2024-07-29T21:16:00</span>
|
||||
:: <span class="post-list-title">BatMon</span></a>
|
||||
|
||||
<span class="post-tags-inline">
|
||||
::
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/development/">#development</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/freebsd/">#freebsd</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/linux/">#linux</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/nim/">#nim</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/tools/">#tools</a></span>
|
||||
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<footer class="footer">
|
||||
<div class="footer__inner">
|
||||
|
||||
<a href="https://notnull.space/@paul" rel="me">fediverse (gts)</a>
|
||||
|
||||
<a href="https://snac.notnull.space/paul" rel="me">fediverse (snac)</a>
|
||||
|
||||
<a href="https://codeberg.org/pswilde" rel="me">codeberg</a>
|
||||
|
||||
<a href="https://keyoxide.org/85633E30514CC1932E4268460ED12CF710BC42CA" rel="me">keyoxide</a>
|
||||
|
||||
</div>
|
||||
<div class="footer__inner">
|
||||
<div class="copyright">
|
||||
<span>©
|
||||
2024
|
||||
Paul Wilde</span>
|
||||
<span class="copyright-theme">
|
||||
<span class="copyright-theme-sep">:: </span>
|
||||
Theme: <a href="https://github.com/pawroman/zola-theme-terminimal/">Terminimal</a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -99,7 +99,7 @@
|
|||
|
||||
<li class="tag-list">
|
||||
<a href="https://paulwilde.uk/tags/development/">
|
||||
development (5 posts)
|
||||
development (6 posts)
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
@ -127,6 +127,12 @@
|
|||
</a>
|
||||
</li>
|
||||
|
||||
<li class="tag-list">
|
||||
<a href="https://paulwilde.uk/tags/freebsd/">
|
||||
freebsd (1 post)
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="tag-list">
|
||||
<a href="https://paulwilde.uk/tags/funny/">
|
||||
funny (2 posts)
|
||||
|
@ -151,6 +157,12 @@
|
|||
</a>
|
||||
</li>
|
||||
|
||||
<li class="tag-list">
|
||||
<a href="https://paulwilde.uk/tags/linux/">
|
||||
linux (1 post)
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="tag-list">
|
||||
<a href="https://paulwilde.uk/tags/me/">
|
||||
me (2 posts)
|
||||
|
@ -159,7 +171,7 @@
|
|||
|
||||
<li class="tag-list">
|
||||
<a href="https://paulwilde.uk/tags/nim/">
|
||||
nim (2 posts)
|
||||
nim (3 posts)
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
@ -213,7 +225,7 @@
|
|||
|
||||
<li class="tag-list">
|
||||
<a href="https://paulwilde.uk/tags/tools/">
|
||||
tools (1 post)
|
||||
tools (2 posts)
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
|
143
tags/linux/index.html
Normal file
143
tags/linux/index.html
Normal file
|
@ -0,0 +1,143 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>
|
||||
Tag: linux | Paul's Site of Stuff</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
|
||||
<meta name="robots" content="noodp"/>
|
||||
|
||||
<link rel="stylesheet" href="https://paulwilde.uk/style.css">
|
||||
<link rel="stylesheet" href="https://paulwilde.uk/color/orange.css">
|
||||
|
||||
<link rel="stylesheet" href="https://paulwilde.uk/color/background_blue.css">
|
||||
|
||||
<link rel="stylesheet" href="https://paulwilde.uk/font-hack-subset.css">
|
||||
|
||||
|
||||
|
||||
|
||||
<meta name="description" content="All posts tagged linux">
|
||||
|
||||
<meta property="og:description" content="All posts tagged linux">
|
||||
<meta property="og:title" content="linux | Paul's Site of Stuff">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://paulwilde.uk/tags/linux/">
|
||||
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:description" content="All posts tagged linux">
|
||||
<meta name="twitter:title" content="linux | Paul's Site of Stuff">
|
||||
<meta property="twitter:domain" content="paulwilde.uk">
|
||||
<meta property="twitter:url" content="https://paulwilde.uk/tags/linux/">
|
||||
|
||||
|
||||
|
||||
<link rel="alternate" type="application/atom+xml" title="RSS" href="https://paulwilde.uk/atom.xml">
|
||||
|
||||
|
||||
<link rel="shortcut icon" type="image/png" href="/favicon.png">
|
||||
|
||||
<script defer data-domain="paulwilde.uk" src="https://plausible.io/js/script.js"></script>
|
||||
|
||||
</head>
|
||||
<body class="">
|
||||
<div class="container">
|
||||
|
||||
<header class="header">
|
||||
<div class="header__inner">
|
||||
<div class="header__logo">
|
||||
|
||||
<a href="https://paulwilde.uk" style="text-decoration: none;">
|
||||
<div class="logo">
|
||||
|
||||
Hello, I'm Paul
|
||||
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<nav class="menu">
|
||||
<ul class="menu__inner">
|
||||
<li><a href="/">home</a></li>
|
||||
|
||||
<li><a href="/aboutme">about me</a></li>
|
||||
|
||||
<li><a href="/ponderings">ponderings</a></li>
|
||||
|
||||
<li><a href="/iuse">i use …</a></li>
|
||||
|
||||
<li><a href="/tags">tags</a></li>
|
||||
|
||||
<li><a href="/atom.xml">rss</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
</header>
|
||||
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
tag: #linux
|
||||
(1 post)
|
||||
</h1>
|
||||
|
||||
<a href="https://paulwilde.uk/tags/">
|
||||
Show all tags
|
||||
</a>
|
||||
|
||||
|
||||
<ul><li class="post-list">
|
||||
<a href="https://paulwilde.uk/ponderings/batmon/">
|
||||
<span class="post-date">2024-07-29T21:16:00</span>
|
||||
:: <span class="post-list-title">BatMon</span></a>
|
||||
|
||||
<span class="post-tags-inline">
|
||||
::
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/development/">#development</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/freebsd/">#freebsd</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/linux/">#linux</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/nim/">#nim</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/tools/">#tools</a></span>
|
||||
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<footer class="footer">
|
||||
<div class="footer__inner">
|
||||
|
||||
<a href="https://notnull.space/@paul" rel="me">fediverse (gts)</a>
|
||||
|
||||
<a href="https://snac.notnull.space/paul" rel="me">fediverse (snac)</a>
|
||||
|
||||
<a href="https://codeberg.org/pswilde" rel="me">codeberg</a>
|
||||
|
||||
<a href="https://keyoxide.org/85633E30514CC1932E4268460ED12CF710BC42CA" rel="me">keyoxide</a>
|
||||
|
||||
</div>
|
||||
<div class="footer__inner">
|
||||
<div class="copyright">
|
||||
<span>©
|
||||
2024
|
||||
Paul Wilde</span>
|
||||
<span class="copyright-theme">
|
||||
<span class="copyright-theme-sep">:: </span>
|
||||
Theme: <a href="https://github.com/pawroman/zola-theme-terminimal/">Terminimal</a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -84,7 +84,7 @@ Tag: nim | Paul's Site of Stuff</title>
|
|||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
tag: #nim
|
||||
(2 posts)
|
||||
(3 posts)
|
||||
</h1>
|
||||
|
||||
<a href="https://paulwilde.uk/tags/">
|
||||
|
@ -93,6 +93,20 @@ Tag: nim | Paul's Site of Stuff</title>
|
|||
|
||||
|
||||
<ul><li class="post-list">
|
||||
<a href="https://paulwilde.uk/ponderings/batmon/">
|
||||
<span class="post-date">2024-07-29T21:16:00</span>
|
||||
:: <span class="post-list-title">BatMon</span></a>
|
||||
|
||||
<span class="post-tags-inline">
|
||||
::
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/development/">#development</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/freebsd/">#freebsd</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/linux/">#linux</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/nim/">#nim</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/tools/">#tools</a></span>
|
||||
|
||||
</li>
|
||||
<li class="post-list">
|
||||
<a href="https://paulwilde.uk/ponderings/nemini/">
|
||||
<span class="post-date">2023-02-20T12:57:13+00:00</span>
|
||||
:: <span class="post-list-title">Nemini</span></a>
|
||||
|
|
|
@ -84,7 +84,7 @@ Tag: tools | Paul's Site of Stuff</title>
|
|||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
tag: #tools
|
||||
(1 post)
|
||||
(2 posts)
|
||||
</h1>
|
||||
|
||||
<a href="https://paulwilde.uk/tags/">
|
||||
|
@ -93,6 +93,20 @@ Tag: tools | Paul's Site of Stuff</title>
|
|||
|
||||
|
||||
<ul><li class="post-list">
|
||||
<a href="https://paulwilde.uk/ponderings/batmon/">
|
||||
<span class="post-date">2024-07-29T21:16:00</span>
|
||||
:: <span class="post-list-title">BatMon</span></a>
|
||||
|
||||
<span class="post-tags-inline">
|
||||
::
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/development/">#development</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/freebsd/">#freebsd</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/linux/">#linux</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/nim/">#nim</a>,
|
||||
<a class="post-tag" href="https://paulwilde.uk/tags/tools/">#tools</a></span>
|
||||
|
||||
</li>
|
||||
<li class="post-list">
|
||||
<a href="https://paulwilde.uk/ponderings/wm-tools/">
|
||||
<span class="post-date">2022-05-08T16:25:13+01:00</span>
|
||||
:: <span class="post-list-title">wm_tools</span></a>
|
||||
|
|
Loading…
Reference in a new issue