This script creates n labelled terminals, where n is passed in as a command line argument. This makes demonstrating and understanding differing layouts in say DWM or some other window manager easier as we can directly see how the stack changes based on operations.
8 lines
146 B
Bash
Executable File
8 lines
146 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
for v in $(seq 1 $1)
|
|
do
|
|
$TERMINAL -e sh -c "figlet ${v} && echo \"Press any key to exit...\" && read" &
|
|
sleep 0.5
|
|
done
|