mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
13 lines
385 B
Bash
Executable file
13 lines
385 B
Bash
Executable file
#!/bin/bash
|
|
|
|
STR=$(swaymsg -t get_tree | jq -r 'recurse(.nodes[]) | select(.name == "__i3_scratch")' | grep kittyterm)
|
|
CHECK=$(swaymsg -t get_tree | grep kittyterm)
|
|
if [ "$CHECK" == "" ]; then
|
|
exec kitty -T kittyterm & sleep 1
|
|
fi
|
|
if [ "$STR" == "" ]; then
|
|
exec swaymsg '[title="kittyterm"]' scratchpad show
|
|
else
|
|
exec swaymsg '[title="kittyterm"]' scratchpad show
|
|
fi
|
|
exit 0
|