curiouser / displays.sh
0 likes
0 forks
2 files
Last active 2 months ago
Script to configure displays using xrandr from an enumerated list
| 1 | #! /usr/bin/env bash |
| 2 | |
| 3 | vi ~/.local/bin/displays.sh |
curiouser / Root on ZFS using ZFS Boot Manager
0 likes
0 forks
2 files
Last active 2 months ago
Migrate Pop! install to ZFS
| 1 | #! /usr/bin/env bash |
| 2 | # adapted from https://docs.zfsbootmenu.org/en/v2.3.x/guides/ubuntu/uefi.html |
| 3 | # script is not meant to be run non-interactively. read and understand before executing |
| 4 | |
| 5 | sudo -i |
| 6 | |
| 7 | source /etc/os-release |
| 8 | export ID |
| 9 | |
| 10 | export POOL_DEVICE="/dev/nvme1n1p3" |
curiouser / project-openspace.sh
0 likes
0 forks
5 files
Last active 2 months ago
Project OpenSpace into another room, typically executed via SSH
| 1 | #! /usr/bin/env bash |
| 2 | |
| 3 | xrandr --output DP-4 --auto --primary --output HDMI-0 --off |
curiouser / docker-compose.yml
0 likes
0 forks
2 files
Last active 2 months ago
snikket behind reverse proxy
| 1 | #!/bin/sh -e |
| 2 | |
| 3 | CERT_PATH_LE_LIVE="/snikket/letsencrypt/live/$SNIKKET_DOMAIN_ASCII" |
| 4 | CERT_PATH="/etc/prosody/certs/$SNIKKET_DOMAIN.crt" |
| 5 | |
| 6 | check_cert_path() { |
| 7 | if test -f "$CERT_PATH"; then |
| 8 | exit 0; |
| 9 | fi |
| 10 | } |
curiouser / XMPP server stack
0 likes
0 forks
3 files
Last active 2 months ago
Snikket + Slidge stack configuration files
| 1 | local DOMAIN = Lua.assert(ENV_SNIKKET_DOMAIN, "Please set the SNIKKET_DOMAIN environment variable") |
| 2 | |
| 3 | modules_enabled: append { |
| 4 | "privilege"; |
| 5 | } |
| 6 | |
| 7 | local _privileges = { |
| 8 | roster = "both"; |
| 9 | message = "outgoing"; |
| 10 | iq = { |
Newer
Older