Yabai: Change iTerm script to reflect its behavior
With my config, it doesn't spawn a window on first launch
This commit is contained in:
parent
77077edd46
commit
69d99c998b
@ -6,12 +6,17 @@
|
|||||||
# Distributed under terms of the MIT license.
|
# Distributed under terms of the MIT license.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
osascriptcmd='tell application "iTerm2" to create window with default profile'
|
||||||
if ! pgrep -f "iTerm" > /dev/null 2>&1; then
|
if ! pgrep -f "iTerm" > /dev/null 2>&1; then
|
||||||
echo "Opening iTerm"
|
echo "Opening iTerm"
|
||||||
exec open -a "/Applications/iTerm.app"
|
open -a "/Applications/iTerm.app"
|
||||||
elif ! osascript -e 'tell application "iTerm2" to create window with default profile' > /dev/null 2>&1; then
|
fi
|
||||||
|
if osascript -e "$osascriptcmd" > /dev/null 2>&1; then
|
||||||
|
echo "Opening new iTerm window"
|
||||||
|
else
|
||||||
echo "Killing iTerm and restarting"
|
echo "Killing iTerm and restarting"
|
||||||
killall "iTerm"
|
killall "iTerm"
|
||||||
exec open -a "/Applications/iTerm.app"
|
open -a "/Applications/iTerm.app"
|
||||||
|
osascript -e "$osascriptcmd"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user