add darkman

This commit is contained in:
Joel Beckmeyer
2026-05-18 21:19:00 -04:00
parent 528ed9b0b7
commit e9cd7c268a
5 changed files with 52 additions and 0 deletions
@@ -0,0 +1,10 @@
#!/bin/sh
# This uses the neovim-remote python package to control other neovim instances.
# see: https://github.com/mhinz/neovim-remote
# Further, it is assumed that toggling the background in neovim is enough.
# Anything else should be handled by the set color scheme.
for server in $(nvr --serverlist); do
nvr --servername "$server" -cc "set background=$1"
done