24 lines
640 B
Groff
24 lines
640 B
Groff
hello
|
|
|
|
screen_add one
|
|
screen_widget_add one w1 string
|
|
screen_widget_set one w1 1 2 "Hello?"
|
|
screen_widget_add one title title
|
|
screen_widget_set one title "TEST SCREEN ONE"
|
|
|
|
screen_add two
|
|
screen_widget_add two title title
|
|
screen_widget_add two 0% string
|
|
screen_widget_add two 100% string
|
|
screen_widget_add two cpubar hbar
|
|
screen_widget_set two title "CPU: 57.6%"
|
|
screen_widget_set two 0% 1 4 0%
|
|
screen_widget_set two 100% 17 4 100%
|
|
screen_widget_set two cpubar 3 4 47
|
|
|
|
screen_add three
|
|
screen_widget_add three w1 string
|
|
screen_widget_set three w1 1 3 "Me too!"
|
|
screen_widget_add three title title
|
|
screen_widget_set three title "TEST THREE"
|