mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-09 12:37:46 +00:00
8 lines
169 B
Bash
Executable File
8 lines
169 B
Bash
Executable File
#!/bin/bash
|
|
|
|
case "$TERMINAL" in
|
|
"alacritty") touch ~/.config/alacritty/alacritty.toml ;;
|
|
"kitty") killall -SIGUSR1 kitty ;;
|
|
"ghostty") killall -SIGUSR2 ghostty ;;
|
|
esac
|