Add theme-set/switching logic, and minor nvim, tmux, obsidian changes

This commit is contained in:
2025-10-30 00:03:39 -05:00
parent f8bb7bbf03
commit bd5cb81499
55 changed files with 716 additions and 182 deletions

View File

@@ -0,0 +1,18 @@
#!/bin/zsh
theme_update_havoc() {
echo "TODO: theme_update_havoc not yet implemented"
}
theme_update_kitty() {
killall -SIGUSR1 kitty
}
case "$TERMINAL" in
("havoc")
theme_update_havoc
;;
("kitty")
theme_update_kitty
;;
esac