fusuma-plugin-thumbsense 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 30004fbb68724dafdc6cdafc0b8ab756ed1f3104c505327adb2a4435617c6400
|
|
4
|
+
data.tar.gz: bbdd89545b405e673e87e61cae5c9fb3052c4b8a788c28e889664618cbd95a4b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: af54a3831c6b69e9449efde47bad16be777902eaf65492edd7cf2291cbfc30202b16cbe63e5632707f253ff5eb445ed3a54654618a409783629ae3168547bfde
|
|
7
|
+
data.tar.gz: afdb2ed48a5f1629875a77c282606c0460a7dc6664561ffb4b12e2d947281a0988d2c2af78ad662818c85a14f12f128130bc8c853beaf68cf484f6e99bb1f1fb
|
data/README.md
CHANGED
|
@@ -1,27 +1,32 @@
|
|
|
1
1
|
# Fusuma::Plugin::Thumbsense [](https://badge.fury.io/rb/fusuma-plugin-thumbsense) [](https://github.com/iberianpig/fusuma-plugin-thumbsense/actions/workflows/main.yml)
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
ThumbSense plugin for [Fusuma](https://github.com/iberianpig/fusuma)
|
|
3
|
+
Remapper from key to click only while tapping the touchpad.
|
|
4
|
+
Implemented as [Fusuma](https://github.com/iberianpig/fusuma) Plugin.
|
|
6
5
|
|
|
7
|
-
|
|
6
|
+
**THIS PLUGIN IS EXPERIMENTAL.**
|
|
8
7
|
|
|
9
|
-
|
|
8
|
+
## What is ThumbSense?
|
|
9
|
+
[ThumbSense](https://www2.sonycsl.co.jp/person/rekimoto/tsense/soft/index.html) is a tool that lets you control a laptop's touchpad using the keyboard. It assigns certain keyboard keys as mouse buttons and switches between acting as mouse buttons or normal keyboard keys based on whether the user's thumb is touching the touchpad. ThumbSense aims to make it easier to use the touchpad without moving your hand away from the keyboard.
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
### Requirements
|
|
14
|
+
|
|
15
|
+
- [fusuma](https://github.com/iberianpig/fusuma#update) 2.0 or later
|
|
16
|
+
- [fusuma-plugin-keypress](https://github.com/iberianpig/fusuma-plugin-keypress) 0.5 or later
|
|
17
|
+
- fusuma-plugin-keypress is used to get keyboard input and is installed automatically.
|
|
18
|
+
- [fusuma-plugin-remap](https://github.com/iberianpig/fusuma-plugin-remap)
|
|
19
|
+
- You need to set up udev rules for creating a virtual input device.
|
|
20
|
+
- Please refer to [fusuma-plugin-remap's README](https://github.com/iberianpig/fusuma-plugin-remap?tab=readme-ov-file#set-up-udev-rules) for details.
|
|
14
21
|
|
|
15
22
|
### Install fusuma-plugin-thumbsense
|
|
16
23
|
|
|
17
|
-
|
|
18
|
-
- fusuma-plugin-keypress is used to get keyboard input and is installed automatically.
|
|
24
|
+
Run the following code in your terminal.
|
|
19
25
|
|
|
20
26
|
```sh
|
|
21
27
|
$ sudo gem install fusuma-plugin-thumbsense
|
|
22
28
|
```
|
|
23
29
|
|
|
24
|
-
|
|
25
30
|
## Properties
|
|
26
31
|
|
|
27
32
|
### Thumbsense
|
|
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
|
|
|
24
24
|
spec.required_ruby_version = ">= 2.7"
|
|
25
25
|
# https://packages.ubuntu.com/search?keywords=ruby&searchon=names&exact=1&suite=all§ion=main
|
|
26
26
|
# support focal (20.04LTS) 2.7
|
|
27
|
-
spec.add_dependency "fusuma", ">= 3.
|
|
27
|
+
spec.add_dependency "fusuma", ">= 3.2"
|
|
28
28
|
spec.add_dependency "fusuma-plugin-keypress", ">= 0.5"
|
|
29
29
|
spec.add_dependency "fusuma-plugin-remap"
|
|
30
30
|
spec.metadata = {
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fusuma-plugin-thumbsense
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- iberianpig
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-09-
|
|
11
|
+
date: 2023-09-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fusuma
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '3.
|
|
19
|
+
version: '3.2'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '3.
|
|
26
|
+
version: '3.2'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: fusuma-plugin-keypress
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|