This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Logiops (Linux driver) configuration for Logitech MX Master 3. | |
// Includes gestures, smartshift, DPI. | |
// Tested on logid v0.3.3 - KDE 5.27.5 on Debian 12 | |
// OUTSTANDING | |
// 1. Create down-button gestures for Obsidian | |
// What's working: | |
// 1. Window snapping using Gesture button (Thumb) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create a function called MakePerson which takes in name, birthday, ssn as its parameters and returns a new object with all of the information that you passed in. | |
function MakePerson(name, bday, ssn) { | |
var person = {}; | |
person.name = name; | |
person.bday = bday; | |
person.ssn = ssn; | |
return person; | |
}; |