forked from dokutan/mouse_m908
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_generic.ini
118 lines (103 loc) · 2.14 KB
/
example_generic.ini
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# Example configuration for the mice with generic support
#
# 5 different profiles (1-5) are stored on the mouse
# if a particular option is not specified a default value will be used
[profile1]
# led mode:
# breathing, breathing_rainbow, rainbow, static, wave, alternating, reactive, reactive_button, flashing, off, random
lightmode=static
# led color
color=50ff00
# led brightness level (1-3)
brightness=2
# led animation speed (1-8)
speed=1
# scrollspeed (1-3f)
scrollspeed=1
# Each profile has 5 dpi levels (1-5) that can be individually set and enabled/disabled
# Set dpiX_enable=0 to disable a particular dpi level
# It is not possible to disable all DPI levels, at least one will remain enabled
dpi1_enable=0
dpi2_enable=1
dpi3_enable=1
dpi4_enable=1
dpi5_enable=0
# There is only one implemented format to specify the DPI:
# 1. raw bytecode: 0x[04-8c][00-01]
# Note: specifying the actual DPI is unsupported due to a lack of information
# Note: the older DPI format (04-8c) is no longer supported.
dpi1=0x0400
dpi2=0x1600
dpi3=0x2d00
dpi4=0x4300
dpi5=0x8c00
# usb report rate (125, 250, 500, 1000) Hz
report_rate=500
# button mapping: this will not work for your mouse
# keymap.md for full details
button_left=left
button_right=right
button_middle=middle
button_dpi=dpi-cycle
button_backward=backward
button_forward=forward
scroll_up=scroll_up
scroll_down=scroll_down
[profile2]
lightmode=breathing
color=5000ff
brightness=3
scrollspeed=1
dpi1=0x1600
dpi2=0x1600
[profile3]
[profile4]
[profile5]
# Macro definitions
# Each macro (1-15) is defined in its own section, starting with ";## macro"
# Each action is prefixed by ";# "
# A tab ('\t') is used to separate the action from the value
# There are 4 different possible actions:
# down (key)
# up (key)
# delay (time in 10ms)
# move_(left/right/up/down) (1-120)
;## macro1
;# down m
;# up m
;# down a
;# up a
;# down c
;# up c
;# down r
;# up r
;# down o
;# up o
;# down 1
;# up 1
;## macro2
;# down m
;# up m
;# down a
;# up a
;# down c
;# up c
;# down r
;# up r
;# down o
;# up o
;# down 2
;# up 2
;## macro3
;# down m
;# up m
;# down a
;# up a
;# down c
;# up c
;# down r
;# up r
;# down o
;# up o
;# down 3
;# up 3