Update.
[scripts.git] / kill-unused-xterms.sh
index 075b2ba..8100b6b 100755 (executable)
 
 set -e
 
+TERMINAL_APP=xterm
+[[ "${TERMINAL_APP}" ]] || TERMINAL_APP=xterm
+
 NB_KILLED=0
 NB_TOTAL=0
 SHELL_NAME=$(basename ${SHELL})
 
 # Loop through the pid of xterms
-for ppid in $(ps h -C xterm -o pid); do
+for ppid in $(ps h -C "${TERMINAL_APP}" -o pid); do
 
     N=0