digitalcourage.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
Diese Instanz wird betrieben von Digitalcourage e.V. für die Allgemeinheit. Damit wir das nachhaltig tun können, erheben wir einen jährlichen Vorausbeitrag von 1€/Monat per SEPA-Lastschrifteinzug.

Server stats:

860
active users

Marcus Rohrmoser 🌻

Hi @kevinbowen,
I ended up with a shell script on dark/light toggle:

...
xf_set () {
# forum.xfce.org/viewtopic.php?p
xfconf-query -c "xfce4-terminal" -p "/$1" -s "$2"
}
if [ "$(basename "$0")" = "mode-dark" ]
then
xf_set "color-foreground" "#839496"
xf_set "color-background" ""
xf_set "color-cursor" ""
xf_set "color-bold" ""
else
xf_set "color-foreground" "#073642"
xf_set "color-background" ""
xf_set "color-cursor" "#073642"
xf_set "color-bold" "#073642"
fi

forum.xfce.orgHow to specify a background color for an xfce4-terminal color preset / Themes & Screenshots / Xfce Forums