Commit 737534ee authored by John Jekel's avatar John Jekel
Browse files

Begin work on rewriting touchpad workaround in Rust

parent 1b667fef
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+1 −0
Original line number Diff line number Diff line
/target

Cargo.lock

0 → 100644
+7 −0
Original line number Diff line number Diff line
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3

[[package]]
name = "rust-14ARE15-fixes"
version = "0.1.0"

Cargo.toml

0 → 100644
+12 −0
Original line number Diff line number Diff line
[package]
name = "rust-14ARE15-fixes"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]

[[bin]]
name = "touchpad-workaround"
path = "src/touchpad_workaround.rs"
+0 −0

File moved.

+36 −0
Original line number Diff line number Diff line
/* touchpad_workaround.rs
 * By: John Jekel
 *
 * Even better Rust reimplementation of touchpad_workaround.c which was a better reimplementation of the original touchpad_workaround.sh script for Aurora
 *
*/

/* Imports */

//TODO (include "use" and "mod" here)

/* Constants */

//TODO

/* Macros */

//TODO (also pub(crate) use the_macro statements here too)

/* Static Variables */

//TODO

/* Types */

//TODO

/* Associated Functions and Methods */

//TODO

/* Functions */

fn main() {
    todo!();
}