mirror of
https://github.com/jimeh/tmuxifier.git
synced 2026-02-19 09:56:39 +00:00
10 lines
222 B
Bash
Executable File
10 lines
222 B
Bash
Executable File
#! /usr/bin/env bash
|
|
set -e
|
|
[ -n "$TMUXIFIER_DEBUG" ] && set -x
|
|
|
|
list=$(find "$TMUXIFIER_LAYOUT_PATH" -name "*.window.sh")
|
|
for file in $list; do
|
|
file=${file/$TMUXIFIER_LAYOUT_PATH\//}
|
|
echo " ${file/.window.sh/}"
|
|
done
|