-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Created by John Anderson < [email protected] > | ||
## Explanation of hardstatus line ## | ||
|
||
# Note the embeded space after the colon, I feel | ||
# it just looks nicer with a blank between the | ||
# text and console edge: | ||
# '%{=b}%{G} Screens: ' | ||
|
||
# This prints the window listing in blue: | ||
# '%{b}%w' | ||
|
||
# This right-aligns what follows: | ||
# '%=' | ||
|
||
# This displays the time (hours and minutes) in 12hr format | ||
# and adds an AM/PM flag, in bold green: | ||
# '%{G}%C%A' | ||
|
||
# This displays the day of the week: | ||
# '%D' | ||
|
||
#This displays the date in Mon/day/year format: | ||
# and again I embeded a space to give me one space | ||
# between the text and console edge: | ||
# '%M/%d/%Y ' | ||
|
||
# The resultsing command give you a status line that | ||
# looks like this: | ||
# | Screens: 0* bash <blanks zapped> 5:30PM Fri, Jun/25/2004 | | ||
# (The pipes indicate the edges of the xterm/console). | ||
|
||
# Green text, time, and date; windows in blue: | ||
hardstatus alwayslastline "%{=b}%{G} Screen(s): %{b}%w %=%{kG}%C%A %D, %M/%d/%Y " | ||
|
||
# Turn off start message: | ||
startup_message off | ||
|
||
# Set messages timeout to one second: | ||
msgwait 1 |