fusuma-plugin-sendkey 0.1.1 → 0.2.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: 3087cd15e356a48d1f8fd2398daed7f6153d4e9c005db98ffad34627b357bc65
4
- data.tar.gz: 0dd9da2ff1ef200d76691f9a3e72fe8efff68cea8e6eef1c448387df6154daf1
3
+ metadata.gz: 20acb25008be7032e506513fd56003563ad0a03f1b619ecd8971b6cc850ccec9
4
+ data.tar.gz: 06fc628741861bc7583d7d78c129114ba758e2947ea293d87db8f30f736752c0
5
5
  SHA512:
6
- metadata.gz: 830a41f20bfa018ceff548a8c660012947657fbd18b8e369a1033fb4f4d0e2f665ade047eeafa9d3ba3ade8ba5079a1c1044cc6401b4222da20847bced619a7b
7
- data.tar.gz: 9f8ae60d5377799ed80844ba3a218049c1a736cf7ed0e733dea347067a30fc548f6aa5c82b2311858e2474f8ad0d1df8a3e8739730d9e301664a784d2a073b26
6
+ metadata.gz: 9dafb894307348bb7530fbc396576c82d092e8e6b1761fdd7690766e0722aaa2bae106a8e9ebf8d29c9d206854f20586e4ad402574751531fe1f8bd2f7938501
7
+ data.tar.gz: a953190bc8e09ad23ae43c1b318c53b4ffbaafac71066410da779ecf32c6933c04230f4848dd9028fae5ea354957af5818be74f79b2fc95d05df8bd0853ae8a3
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [Fusuma](https://github.com/iberianpig/fusuma) plugin that sending virtual keyboard events
4
4
 
5
5
  * Emulate keyboard events with evemu-event
6
- * This plugin replaces xdotool
6
+ * This plugin is wayland compatible and alternative to xdotool
7
7
 
8
8
  ## Installation
9
9
 
@@ -12,13 +12,13 @@ Run the following code in your terminal.
12
12
  ### Install dependencies
13
13
 
14
14
  ```sh
15
- $ sudo apt-get install evemu-tools libevdev-dev
15
+ $ sudo apt-get install evemu-tools libevdev-dev ruby-ffi
16
16
  ```
17
17
 
18
18
  ### Install fusuma-plugin-sendkey
19
19
 
20
20
  ```sh
21
- $ gem install fusuma-plugin-sendkey
21
+ $ sudo gem install fusuma-plugin-sendkey
22
22
  ```
23
23
 
24
24
 
data/exe/fusuma-sendkey CHANGED
@@ -19,7 +19,7 @@ end
19
19
  opt.parse!(ARGV)
20
20
 
21
21
  if option[:list]
22
- puts Keyboard.new.available_codes
22
+ puts Fusuma::Plugin::Sendkey::Keyboard.new.available_codes
23
23
  return
24
24
  end
25
25
 
@@ -36,6 +36,6 @@ if param.nil?
36
36
  exit 1
37
37
  end
38
38
 
39
- Keyboard.new.type_command(param: param).tap do |command|
39
+ Fusuma::Plugin::Sendkey::Keyboard.new.type_command(param: param).tap do |command|
40
40
  exec(command)
41
41
  end
@@ -3,7 +3,7 @@
3
3
  module Fusuma
4
4
  module Plugin
5
5
  module Sendkey
6
- VERSION = '0.1.1'
6
+ VERSION = '0.2.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-sendkey
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - iberianpig
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-03-03 00:00:00.000000000 Z
11
+ date: 2020-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: evdev