~jigong

literally me

I created the static site generator this micro-blog is built on! Check out blogde here!

RSS: https://tilde.green/~jigong/index.xml

XMPP: jigong@tilde.green

<
?
>

BAD IDEA 1: Using tmux as a service daemon

08/18/2025

I run an Artix server with the openrc init system from home and was looking into using copyparty which is a powerful portable file server with a really bad UI.

I was in a rush and unable to get an openrc init file working, so I copped out and decided to use tmux as a daemonizer. This is pretty easy, all you need is a tmux script to create a detatched tmux instance and run the program you would like to run, and a way to run that script on reboot so you do not have to worry about running it manually.

Create the tmux script

#!/bin/bash

SESSION_NAME="copyparty"

# Create a new session and name it
tmux new-session -d -s $SESSION_NAME

# Send a command to the first pane
tmux send-keys -t 0 'copyparty' C-m

do not forget to chmod +x the script to make it executable

Update your crontab

You just need to use the @reboot directive in your crontab like this:

@reboot /path/to/your/script

Simulate a server restart to test

First delete the reboot lock file to trick cron into thinking you have rebooted:

rm /var/run/crond.reboot

Then restart cron with whatever init system you are running.

Check to see if your service is running with

tmux a -t NAME_OF_YOUR_TMUX_SESSION

--

And that is it! you get live logs in the tmux session, you can stop and start it just by attaching to the tmux session and stopping and starting a program as you would in the shell.

This is definitely a bad idea though, it is just useful in a pinch.

---

Blogde Now Has RSS Generator

08/17/2025

I have added rss feed generation to blogde which is the static site generator this blog is built with.

You can add this blog to your rss feed with this link https://tilde.green/~jigong/index.xml

The description and links still need work. Once I add pagination and auto generation of pages for each post it will all make more sense. Updates coming soon!

---

What The Heck is Omarchy

08/14/2025

If you follow linux-fluencers on youtube, they are all raving about omarchy as if it was a gift from the Heavens. Is it really anything more than a glorified hyprland rice? Does it truly warrant the onslaught of interviews that it has garnered. I do not know, so lets look at the repo directory by directory and see what is happening under the hood!

A few more thoughts:

  1. If omarchy is going to make people switch to Linux, I think that is great. But i do think a tiling window manager should be something configured by the user, vs getting a bunch of defaults from someone else. The main issue when it comes to noobs installing omarchy will be their inability to actually update the configs because they just wont understand where everything is.

  2. DHH claims "omarchy is an opinionated take on what Linux can be at its best." It is literally just a rice, a curated set of programs and configs. It is not like the kernel was modified, it is not an OS, it is hyprland done well for DHH.

  3. Building off the last point, if anyone complains I am being a jerk here, this is just an opinionated take on omarchy.

  4. I really do not think it deserves the hype it is getting. It is a productized post on r/unixporn (don't use reddit), yet it is getting so much exposure from the linux youtube community it was unavoidable

---

Webring

08/13/2025

Endeavoring to contribute to the tilde.green community, I created a webring. I sent some emails asking users who are actively updating their webpage (as reported by the green report) asking to help in pilotting the feature. If you are interested in joining click on the tilde logo in the webring above or go here!

---

Get Banned Speedrun

08/12/2025

I made a joke to my wife when I joined tilde.green saying: "Let's see how long it takes until I get banned." Well, it took less than 24 hours. Luckily it was just a soft ban of my home IP due to me trying to log in to email via betterbird client too many times. ~jmjl was kind enough to take me out of fail2ban jail. If this isn't a WR speedrun, let me know!

---

Hello Tildeverse

08/11/2025

Hi~ my name is jigong and my main goal is to be crowned Mister Tildeverse at next year's tilde-pageant! I want to win this title to prove that any man with a basic understanding of shell commands can wear the coveted sash. My greatest strength is my drive to build things from scratch; and my greatest weakness is not finishing said things. When I win, which I will, I will create my own tilde server.

---