mirror of
https://github.com/vidarh/rubywm.git
synced 2024-11-15 19:48:30 +01:00
43 lines
795 B
Ruby
43 lines
795 B
Ruby
|
|
# Based on TinyWM by Nick Welch
|
|
# Lots of inspiration from Katriawm
|
|
# https://www.uninformativ.de/git/katriawm/files.html
|
|
#
|
|
|
|
require 'X11'
|
|
require 'set'
|
|
|
|
require_relative 'window.rb'
|
|
require_relative 'wm.rb'
|
|
require_relative 'desktop.rb'
|
|
require_relative 'tiled.rb'
|
|
require_relative '../type_dispatcher'
|
|
|
|
Thread.abort_on_exception = true
|
|
|
|
dpy = X11::Display.new
|
|
wm = WindowManager.new(dpy, num_desktops: 10)
|
|
|
|
# FIXME: This can also go into the WindowManager class
|
|
|
|
d = TypeDispatcher.new(wm)
|
|
d.on(:client_message) do |ev|
|
|
data = ev.data.unpack("V*")
|
|
name = dpy.get_atom_name(ev.type)
|
|
p [name, data, ev]
|
|
d.(name, ev.window, *data)
|
|
end
|
|
|
|
loop do
|
|
ev = nil
|
|
begin
|
|
ev = dpy.next_packet
|
|
rescue Interrupt
|
|
raise
|
|
rescue Exception => e
|
|
pp e
|
|
end
|
|
|
|
p ev
|
|
d.(ev.class, ev)
|
|
end
|