(Scripts)+labelled_terminals

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.
This commit is contained in:
2024-04-23 16:55:29 +05:30
parent be9f4530f5
commit 95edd754ca

View File

@@ -0,0 +1,7 @@
#!/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