Project

General

Profile

unexist.dev

/

subtle

Assorted tidbits and projects

foo.rb

configuration - Dominikh Honnef, 05/09/2011 01:44 AM

 
1
set :gravity, :center
2
set :font, "-*-*-medium-*-*-*-14-*-*-*-*-*-*-*"
3
set :separator, "sep"
4

    
5
screen 1 do
6
  top    [:separator, :views, :separator, :clock, :separator]
7
  bottom [ ]
8
end
9

    
10
style :title do
11
  foreground  "green"
12
end
13

    
14
style :focus do
15
  foreground  "white"
16
end
17

    
18
style :views do
19
  foreground  "white"
20
end
21

    
22
style :sublets do
23
  foreground "green"
24
end
25

    
26
style :separator do
27
  margin_left 50
28
  foreground  "red"
29
end
30

    
31
style :clients do
32
  width       50
33
end
34

    
35
gravity :center,         [   0,   0, 100, 100 ]
36

    
37
grab "W-Return" do; end
38
tag "terms",   "xterm|[u]?rxvt"
39
view "terms", "terms|default"
40
view "www",   "terms"
41
view "gimp",  "terms"
42
view "dev",   "terms"