Skip to content

Commit f7d25eb

Browse files
committed
prepare for 1.0 release
1 parent d11d800 commit f7d25eb

3 files changed

Lines changed: 29 additions & 2 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mouse-scroll-daemon"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
edition = "2024"
55
authors = ["Snehal Koukuntla <snehalreddyk@gmail.com>"]
66
description = "Userspace scroll wheel daemon using evdev/uinput"

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,33 @@ Where:
3838

3939
This creates a smooth curve that starts slow for precision and ramps up for speed.
4040

41+
## 📥 Download Pre-built Binaries
42+
43+
Pre-built binaries are available for download from the [GitHub Releases](https://github.com/Snehal-Reddy/cursor-anxious/releases) page.
44+
45+
### Available Builds
46+
47+
- **x86_64-unknown-linux-gnu** - Standard Linux x86_64 (most common)
48+
- **x86_64-unknown-linux-musl** - Static binary, works on more Linux distributions
49+
- **aarch64-unknown-linux-gnu** - ARM64 Linux (Raspberry Pi, ARM servers, etc.)
50+
51+
### Quick Install from Release
52+
53+
1. Download the appropriate `.tar.gz` file for your system from the [latest release](https://github.com/Snehal-Reddy/cursor-anxious/releases/latest)
54+
2. Extract the archive:
55+
```bash
56+
tar -xzf anxious-scroll-daemon-v1.0-<target>.tar.gz
57+
```
58+
3. Install the binary and service:
59+
```bash
60+
sudo cp anxious-scroll-daemon-<target> /usr/local/bin/anxious-scroll-daemon
61+
sudo chmod +x /usr/local/bin/anxious-scroll-daemon
62+
sudo cp anxious-scroll-daemon.service /etc/systemd/system/
63+
sudo systemctl daemon-reload
64+
sudo systemctl enable anxious-scroll-daemon
65+
sudo systemctl start anxious-scroll-daemon
66+
```
67+
4168
## 📦 Installation as System Service
4269

4370
### Quick Installation

0 commit comments

Comments
 (0)