I am extremely new to the TCL/TK language and have been trying to get something similar to a banner to work. What I have so far is:
I was wondering if anyone could help me so it could perform the following as well:
Any help I would greatly appreciate.
Thanks,
Steve
Code:
#!/usr/local/bin/wish8.0
set USER [exec env | grep USER= | cut -d= -f2]
set HOST [exec hostname]
label .main -text "$USER TOP SECRET SI/TK $HOST" -background yellow
pack .main
I was wondering if anyone could help me so it could perform the following as well:
Code:
1. Centered at the top of the screen
2. On top of all applications
3. No borders displayed just the text.
Any help I would greatly appreciate.
Thanks,
Steve