mirror of
https://github.com/vidarh/rubywm.git
synced 2024-11-15 19:48:30 +01:00
10 lines
179 B
Ruby
10 lines
179 B
Ruby
|
|
# Public Layout interface
|
|
|
|
class Layout
|
|
def call(focus=nil) = nil
|
|
def find(window, focus=nil, dir=nil) = nil
|
|
def place(window) = nil
|
|
|
|
def layout(...) = call(...)
|
|
end
|