fusuma-plugin-thumbsense 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 25560d1130c397e047ad36abc976e19e3117d57b02525f82db04a66771900772
4
- data.tar.gz: fb72b8d4b755c6fa03dd71cb296218f30377f7f0bc189e04ea80c4f137b9ee10
3
+ metadata.gz: 30004fbb68724dafdc6cdafc0b8ab756ed1f3104c505327adb2a4435617c6400
4
+ data.tar.gz: bbdd89545b405e673e87e61cae5c9fb3052c4b8a788c28e889664618cbd95a4b
5
5
  SHA512:
6
- metadata.gz: a4344efe92c9a0abdf086adeba86e6a5dc2df9ff542b07df304ea9532ccc1058c338d0b902cc560579d129b1250ac4ceef55291b025cd8c82e6633a6dbbe46b4
7
- data.tar.gz: b9b4e0c163e9dc4f3ddaa1aed115b367e5f4282684cb5741e534c51e77071bb9cba44248f8a6aa80d127e429ef291ea30e202c2e859c0b9d258545d8783181da
6
+ metadata.gz: af54a3831c6b69e9449efde47bad16be777902eaf65492edd7cf2291cbfc30202b16cbe63e5632707f253ff5eb445ed3a54654618a409783629ae3168547bfde
7
+ data.tar.gz: afdb2ed48a5f1629875a77c282606c0460a7dc6664561ffb4b12e2d947281a0988d2c2af78ad662818c85a14f12f128130bc8c853beaf68cf484f6e99bb1f1fb
data/README.md CHANGED
@@ -1,27 +1,32 @@
1
1
  # Fusuma::Plugin::Thumbsense [![Gem Version](https://badge.fury.io/rb/fusuma-plugin-thumbsense.svg)](https://badge.fury.io/rb/fusuma-plugin-thumbsense) [![Build Status](https://github.com/iberianpig/fusuma-plugin-thumbsense/actions/workflows/main.yml/badge.svg)](https://github.com/iberianpig/fusuma-plugin-thumbsense/actions/workflows/main.yml)
2
2
 
3
- **THIS PLUGIN IS EXPERIMENTAL.**
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
- ThumbSense 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.
6
+ **THIS PLUGIN IS EXPERIMENTAL.**
8
7
 
9
- [ThumbSense](https://www2.sonycsl.co.jp/person/rekimoto/tsense/soft/index.html)
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
- Run the following code in your terminal.
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
- This plugin requires [fusuma](https://github.com/iberianpig/fusuma#update) 2.0 or later and [fusuma-plugin-keypress](https://github.com/iberianpig/fusuma-plugin-keypress) 0.5 or later.
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&section=main
26
26
  # support focal (20.04LTS) 2.7
27
- spec.add_dependency "fusuma", ">= 3.1"
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 = {
@@ -2,3 +2,4 @@ plugin:
2
2
  inputs:
3
3
  libinput_command_input:
4
4
  verbose: true
5
+ disable-dwt: true
@@ -3,7 +3,7 @@
3
3
  module Fusuma
4
4
  module Plugin
5
5
  module Thumbsense
6
- VERSION = "0.6.0"
6
+ VERSION = "0.7.0"
7
7
  end
8
8
  end
9
9
  end
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.6.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-03 00:00:00.000000000 Z
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.1'
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.1'
26
+ version: '3.2'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: fusuma-plugin-keypress
29
29
  requirement: !ruby/object:Gem::Requirement