.backup
.bin
.config
bspwm
conky
dunst
firestarter
htop
i3
mpd
mpv
polybar
qt5ct
rofi
skhd
sxhkd
syncthing-gtk
yabai
open-iterm2.sh
yabairc
dircolors
kglobalshortcutsrc
khotkeysrc
picom.conf
ptgdp.conf
redshift.conf
user-dirs.dirs
user-dirs.locale
.firestarter
.local
.ssh
.vim
.wpgen
.bashrc
.functions
.gitconfig
.gitmodules
.inputrc
.joy2keyrc
.profile
.vimrc
.xinitrc
.xsessionrc
23 lines
538 B
Bash
Executable File
23 lines
538 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# open-iterm2.sh
|
|
# Copyright (C) 2020 Vintage Salt <rehashedsalt@cock.li>
|
|
#
|
|
# 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
|
|
echo "Opening iTerm"
|
|
open -a "/Applications/iTerm.app"
|
|
fi
|
|
if osascript -e "$osascriptcmd" > /dev/null 2>&1; then
|
|
echo "Opening new iTerm window"
|
|
else
|
|
echo "Killing iTerm and restarting"
|
|
killall "iTerm"
|
|
open -a "/Applications/iTerm.app"
|
|
osascript -e "$osascriptcmd"
|
|
fi
|
|
|