rubywm/layout.rb
2024-07-02 07:00:25 +01:00

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