mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-06 12:37:46 +00:00
15 lines
360 B
Bash
Executable File
15 lines
360 B
Bash
Executable File
#!/bin/bash
|
|
|
|
case "$TERMINAL" in
|
|
"alacritty") touch ~/.config/alacritty/alacritty.toml ;;
|
|
"kitty") killall -SIGUSR1 kitty ;;
|
|
"ghostty")
|
|
# Use a default theme if none exists
|
|
if [[ ! -f ~/.config/omarchy/current/theme/ghostty.conf ]]; then
|
|
echo "theme = Spacegray" >~/.config/omarchy/current/theme/ghostty.conf
|
|
fi
|
|
|
|
killall -USRSIG2 ghostty
|
|
;;
|
|
esac
|