mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
7 lines
234 B
Bash
7 lines
234 B
Bash
KITTIES=$(($(pgrep -P 1 kitty | wc -l) - 1))
|
|
|
|
if ((KITTIES < 1)); then
|
|
exec kitty -o confirm_os_window_close=0 zellij attach --create main
|
|
else
|
|
exec kitty -o confirm_os_window_close=0 zellij attach --create "temp $KITTIES"
|
|
fi
|