Advertisement
Pauan

Subtle Config New

May 29th, 2012
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 1.19 KB | None | 0 0
  1. view "stat" do
  2.   gravity :g50_ul, "xfce4-taskmanager"
  3.   gravity :g50_ll, "transmission-gtk"
  4.   gravity :g50_lr, "pavucontrol"
  5. end
  6.  
  7. view "www" do
  8.   gravity :g100_g, "Firefox"
  9.   client class: "Firefox", role: "browser" do
  10.     borderless true
  11.   end
  12. end
  13.  
  14. view "text" do
  15.   gravity :g60_l, "gedit"
  16.   gravity :g60_r, "xfce4-terminal"
  17. end
  18.  
  19. view "chat" do
  20.   client "Pidgin"
  21.   client "Steam.exe"
  22.   gravity :g15_ul, instance: "Pidgin", role: "buddy_list"
  23.   gravity :g15_ur, instance: "Pidgin", role: "conversation"
  24.   gravity :g15_ll, instance: "Steam.exe", name: "Friends"
  25.   gravity :g15_lr, instance: "Steam.exe", name: /^.+\ -\ Chat$/
  26. end
  27.  
  28. view "5" do
  29.   tag "default"
  30.   gravity :g100_g
  31.   client "hl2.exe" do
  32.     fixed true
  33.   end
  34.   client instance: "phoenix", name: /^bsnes\ v\d+$/ do
  35.     geometry [ 508, 195, 584, 510 ]
  36.     fixed true
  37.   end
  38. end
  39.  
  40. view "gimp" do
  41.   dynamic true
  42.   client /^gimp-\d\.\d$/
  43.   gravity :g15_l, instance: /^gimp-\d\.\d$/, role: "gimp-toolbox"
  44.   gravity :g15_r, instance: /^gimp-\d\.\d$/, role: "gimp-image-window"
  45. end
  46.  
  47. view "files" do
  48.   dynamic true
  49.   gravity :g100_g, "Thunar"
  50. end
  51.  
  52. view "chrome" do
  53.   dynamic true
  54.   gravity :g100_g, "Google-chrome"
  55. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement