19 lines
268 B
Bash
Executable File
19 lines
268 B
Bash
Executable File
#!/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
|