mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
13 lines
408 B
Bash
13 lines
408 B
Bash
STR=$(swaymsg -t get_tree | jq -r 'recurse(.nodes[]) | select(.name == "__i3_scratch")' | grep kittyterm || true )
|
|
if [ "$STR" == "" ]; then
|
|
VAR="1"
|
|
swaymsg '[title="kittyterm"]' scratchpad show
|
|
else
|
|
VAR="0"
|
|
fi
|
|
emacsclient -c -a "" "$@" # open emacs in a new frame, start new daemon if it is dead and open arg
|
|
if [ "$VAR" == "1" ]
|
|
then
|
|
swaymsg '[title="kittyterm"]' scratchpad show
|
|
fi
|
|
exit 0
|