last_updated: 2025-11-27

25-11#

Local-First Conf 2025#

Xubuntu / Mint wilma xfce Black Screen after Unlock#

xfconf-query -c xfwm4 -p /general/vblank_mode -t string -s "off" --create

https://forums.linuxmint.com/viewtopic.php?t=443323

ntfy#

https://docs.ntfy.sh/install/#debianubuntu-repository

~/.config/ntfy/client.yml

subscribe:
  - topic: foo
    command: notify-send -i /usr/share/ntfy/logo.png "foo" "$m"
systemctl --user restart ntfy-client.service
journalctl --user -u ntfy-client.service

How to Override docker-compose.override.yml#

I like to use docker-compose.yml and docker-compose.override.yml, because it allows you to call docker-compose without explicit --file args and still remain flexible. I wanted to override the docker-compose.override.yml.

Create env/felix/docker-compose.override.yml with

include:
  # IMPORTANT! Using `- path` here is like running `compose --file`.
  - path:
      - docker-compose.yml
      - env/dev/docker-compose.override.yml
      - env/felix/include-override.yml