source code for html website at https://zachdecook.com
foss: start drafting links
| -rw-r--r-- | posts/foss.md | 93 | ||||
| -rwxr-xr-x | posts/script.sh | 3 |
2 files changed, 95 insertions, 1 deletions
diff --git a/posts/foss.md b/posts/foss.md new file mode 100644 index 0000000..561214e --- /dev/null +++ b/posts/foss.md @@ -0,0 +1,93 @@ +<meta charset="utf-8"> + +<link rel="stylesheet" type="text/css" href="../../shared/mvp/mvp-dark.css"/> +<link rel="stylesheet" type="text/css" href="../../index2.css"/> + +[**◀ Back**](../../) + + +<main markdown="1"> + +## Free and Open source software I use + +<section markdown="1"> +<aside markdown="1"> + +### [Dino XMPP client](https://dino.im) + +Dino is an XMPP client for Linux Desktop and mobile. + +[](https://dino.im) + +</aside> +<aside markdown="1"> + +### [wvkbd](#) - Wayland Virtual Keyboard + +wvkbd is the virtual keyboard used by SXMO-sway, and also used by my hypeland mobile config. +I've contributed many bugfixes and features 2021-2024, notably the [`-O` swipe output mode](https://git.sr.ht/~proycon/wvkbd/commit/2de12a90e4989f040754c2279c1fa) and the [`specialpad` layout](https://git.sr.ht/~proycon/wvkbd/commit/98e6c43d547df). + +[](#) +</aside> + +<aside markdown="1"> +### [Hyprland](hyprland.org) + +Smooth workspace swipes and blurred transparent backgrounds were the bait that brought me to Hyprland. + +I started contributing fixes at the start of 2024, and notably added [touchscreen workspace swipe](https://github.com/hyprwm/Hyprland/pull/4489) support, a pain-point I had when using SXMO. + +[](https://wiki.hyprland.org) + +</aside> + +<aside markdown="1"> +### [aerc](https://aerc-mail.org/) email client + +It's a TUI email client, what more must be said? + +I switched to it from Thunderbird because it's not bloat, and (as TUI's do) supports transparent background. + +</aside> + +<aside markdown="1"> +### [Alpine Linux](https://alpinelinux.org/) + +I maintain [several packages](https://pkgs.alpinelinux.org/packages?name=&branch=edge&repo=&arch=aarch64&maintainer=Zach+DeCook) on Alpine Linux. It's also my preferred operating system for my laptop, phone, and server that I keep updated. + +[](https://alpinelinux.org/) +</aside> + +</section> + + +## My projects + +<section markdown="1"> +<aside markdown="1"> +### [Swipe Keyboard projects](https://sr.ht/~earboxer/swipeKeyboard/) + +[swipeGuess](https://git.sr.ht/~earboxer/swipeGuess) is the notable tool for matching a stream of swiped characters against a dictionary of words. + +[suggpicker](https://git.sr.ht/~earboxer/suggpicker)is a floating bar for wayland, for repeatable selections. + +[SwipeBehaviors](https://git.sr.ht/~earboxer/SwipeBehaviors) is a set of glue scripts that combine those with wvkbd to make a reasonably-usable swipe/prediction keyboard. +</aside> +</section> + + +## Other FOSS + + +<section markdown="1"> +<aside markdown="1"> +### [SXMO](https://sxmo.org/) + +I frequently contributed to SXMO between 2021-2023. It introduced me to suckless ideology, and still runs great on my old Pinephone. (I've since moved on to Hyprland on my Oneplus 6). + +[](https://sxmo.org) + +</aside> +</section> + +</main> diff --git a/posts/script.sh b/posts/script.sh index cd48225..a7e073a 100755 --- a/posts/script.sh +++ b/posts/script.sh @@ -1,6 +1,6 @@ #!/bin/sh #Create blog -mkdir -p tabs ststech rms verovio fonts +mkdir -p tabs ststech rms verovio fonts foss #pandoc common.md tabs.md -t html5 -s > tabs/index.html #pandoc common.md ststech.md -t html5 -s > ststech/index.html #pandoc common.md tightchange.md -t html5 -s > tightchange/index.html @@ -9,3 +9,4 @@ cat common.md rms.md | python3 -m markdown -o html5 -x footnotes > rms/index.htm python3 -m markdown -o html5 < verovio.md > verovio/index.html python3 -m markdown -o html5 -x attr_list < fonts.md > fonts/index.html cat common.md daily-driver.md | python3 -m markdown -o html5 > daily-driver/index.html +cat foss.md | python3 -m markdown -o html5 -x md_in_html > foss/index.html |