rcmdnk's blog

20140218_screen_capition_200_200

GNU screenではWindow事のcaptionや 各Window情報を下に表示したりするhardstatusが設定できますが 長い表示を書くときに整理する方法について。

setenvを用いて1つずつ加えていく

GNU screenではsetenvを使って変数が定義できるので、 これを使ってどんどん付け足していくだけです。

screenのcaption/hardstatusにおける文法は結構特殊な物が多いので、 自分でも忘れないためにメモを書いておきたいわけですが、 以前は一行captionを書いて、 その下に一つ一つの文字の意味を書き足してました 1

それを、下の様にsetenvを用いると、 説明と設定が一緒にできます。 書き換える時も直接上下させたり付け加えたりするだけなので 説明の書き忘れもありません。

~/.screenrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Caption for each window
setenv a ""
setenv a "$a%?%F"     # if the window has the focus
setenv a "$a%{=d Wk}" #   set attribute = {dim, black(k) on bright Write(W)}
setenv a "$a%:"       # else
setenv a "$a%{=d Kk}" #   set attribute = {dim, black(k) on bright Black(K)}
setenv a "$a%?"       # end if
setenv a "$a%?%P"     # if copy/paste mode
setenv a "$a%{=d Bk}" #   set attribute = {dim, black(k) on bright Blue(B)}
setenv a "$a%?"       # end if
setenv a "$a%n"       # window number
setenv a "$a "        # space
setenv a "$a%L="      # Mark the position for the next truncation
setenv a "$a%h"       # window' hardstatus
setenv a "$a%L>"      # Truncate %L= ~ %L>, 'L' for > gives marks at the truncation point
setenv a "$a%="       # With the last %-0=, it makes right alignment for following lines
setenv a "$a%?%P"     # if copy/paste mode
setenv a "$a  *copy/paste*" # draw this sentence
setenv a "$a%?"       # end if
setenv a "$a%?%E"     # if copy/paste mode
setenv a "$a  ***command**" # draw this sentence
setenv a "$a%?"       # end if
setenv a "$a%-0="     # pad the string to the display's width. "-0" means
                      # start from the rightest side
                      # (e.g. 10=: 10% from left, 010, 10 characters from left
                      # (     -10=: 10% from right)
                      # With %L>, %= above, screen tries to truncates the part 
                      # in the left of "%L>"
caption always "$a"
unsetenv a

# hardstatus
setenv a ""
setenv a "$a%{= Kk}" # set attribute = {black(k) on bright Black(K)}
setenv a "$a%-w"     # windows' list up to the current window (shown as "%n %t")
setenv a "$a%40>"    # Mark here as a point to move when truncation
                     # Try to move this point to the 40% point
setenv a "$a%{= Wk}" # set attribute = {black(k) on bright Write(W)}
setenv a "$a%n"      # current window number
setenv a "$a "       # space
setenv a "$a%t"      # current window title
setenv a "$a%{-}"    # remove the set from the current attributes
setenv a "$a%+w"     # windows' list starting with the window after the current one (shown as "%n %t")
setenv a "$a%-0="    # pad the string to the display's width.
                     # About Truncation/Padding(=,<,>)
                     # http://aperiodic.net/screen/truncation_padding_escapes
hardstatus alwayslastline "$a"
unsetenv a

これが現在自分が使ってる環境ですが、これを使うと こんな感じに表示されます。

screen_caption

screen内でのwindowタイトル等についてはこちらを参照してください。

PS1とPROMPT_COMMAND, GNU screenでの活用も

参考:

sample Gnu Screen file with explicit keyboard bindings (showing defaults)

Sponsored Links
Sponsored Links

« 表示中のページ関連ツイートを開くブックマークレット GNU screenでbind+evalで指定できるコマンドは60個まで »

}