all repos — openbox @ 0816364a039fb0a0b2f989394ffb6af0b5221b3f

openbox fork - make it a bit more like ryudo

scripts/clicks.py (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
def def_click_client(action, win, type, modifiers, button, time):
	client = Openbox_findClient(openbox, win)
	if not client: return

	if button == Button1 and type == Type_CloseButton:
		OBClient_close(client)
	elif button <= Button3 and type == Type_MaximizeButton:
		print "OBClient_maximize(client)"
	elif button == Button1 and type == Type_IconifyButton:
		print "OBClient_iconify(client)"
	elif button == Button1 and type == Type_StickyButton:
		print "OBClient_sendtodesktop(client, 0xffffffff)"
	elif type == Type_Titlebar or type == Type_CloseButton or \
	     type == Type_MaximizeButton or type == Type_IconifyButton or \
	     type == Type_StickyButton or type == Type_Label:
		if button == Button4:
			print "OBClient_shade(client)"
		elif button == Button5:
			print "OBClient_unshade(client)"

def def_click_model(action, win, type, modifiers, button, time):
	if button != Button1: return
	client = Openbox_findClient(openbox, win)
	if not client: return
	print "OBClient_focus(client)"
	print "OBClient_raise(client)"

def def_click_root(action, win, type, modifiers, button, time):
	if type == Type_Root:
		if button == Button1:
			print "nothing probly.."
		elif button == Button2:
			print "workspace menu"
		elif button == Button3:
			print "root menu"
		elif button == Button4:
			print "next workspace"
		elif button == Button5:
			print "previous workspace"

def def_doubleclick_client(action, win, type, modifiers, button, time):
	client = Openbox_findClient(openbox, win)
	if not client: return

	if button == Button1 and (type == Type_Titlebar or type == Type_Label):
		print "OBClient_toggleshade(client)"


register(Action_Click, def_click_model)
register(Action_Click, def_click_client)
register(Action_Click, def_click_root)
register(Action_DoubleClick, def_doubleclick_client)

print "Loaded clicks.py"