mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-22 18:02:42 +00:00
76 lines
1.5 KiB
JavaScript
76 lines
1.5 KiB
JavaScript
const data = {
|
|
name: "Mouse",
|
|
description: "Mouse Actions",
|
|
icon: "mouse",
|
|
actions: {
|
|
560: {
|
|
id: "MS_CLICK_BWD",
|
|
title: "Mouse Backward Button Click",
|
|
icon: "drag_click"
|
|
},
|
|
561: {
|
|
id: "MS_CLICK_FWD",
|
|
title: "Mouse Forward Button Click",
|
|
icon: "ads_click"
|
|
},
|
|
562: {
|
|
id: "MS_CLICK_LF",
|
|
title: "Mouse Left Click",
|
|
icon: "left_click"
|
|
},
|
|
563: {
|
|
id: "MS_CLICK_RT",
|
|
title: "Mouse Right Click",
|
|
icon: "right_click"
|
|
},
|
|
564: {
|
|
id: "MS_CLICK_MD",
|
|
title: "Mouse Middle Click",
|
|
icon: "touchpad_mouse"
|
|
},
|
|
565: {
|
|
id: "MS_MOVE_RT",
|
|
title: "Mouse Move Right",
|
|
icon: "arrow_circle_right"
|
|
},
|
|
566: {
|
|
id: "MS_MOVE_LF",
|
|
title: "Mouse Move Left",
|
|
icon: "arrow_circle_left"
|
|
},
|
|
567: {
|
|
id: "MS_MOVE_DN",
|
|
title: "Mouse Move Down",
|
|
icon: "arrow_circle_down"
|
|
},
|
|
568: {
|
|
id: "MS_MOVE_UP",
|
|
title: "Mouse Move Up",
|
|
icon: "arrow_circle_up"
|
|
},
|
|
569: {
|
|
id: "MS_SCRL_RT",
|
|
title: "Mouse Scroll Right",
|
|
icon: "swipe_right"
|
|
},
|
|
570: {
|
|
id: "MS_SCRL_LF",
|
|
title: "Mouse Scroll Left",
|
|
icon: "swipe_left"
|
|
},
|
|
571: {
|
|
id: "MS_SCRL_DN",
|
|
title: "Mouse Scroll Down",
|
|
icon: "swipe_down"
|
|
},
|
|
572: {
|
|
id: "MS_SCRL_UP",
|
|
title: "Mouse Scroll Up",
|
|
icon: "swipe_up"
|
|
}
|
|
}
|
|
};
|
|
export {
|
|
data as default
|
|
};
|