fusuma 0.1.2 → 0.1.3
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 +4 -4
- data/README.md +4 -7
- data/lib/fusuma.rb +1 -1
- data/lib/fusuma/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3d5dbf8dc3ee23f090735cbf874b106a2605d4a7
|
|
4
|
+
data.tar.gz: b4ac0e19910380ba62a7ea6783d7d10439dcd42f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea09346331be93f62365965af1db7b23dc8c231d9c56085e3d2a591db659f2eb46eee87dba9a14532a95b4f13edc96e6912485ede3a8e4070b11ae99b3dd0a9e
|
|
7
|
+
data.tar.gz: 9da91d39bef22505cd3f7aad904df585452f7f649f303ebe16858d8e6ffe4b8974e59272d4d5ae0113fcc6a82e9c1fba5dc834bedff9165780debdc8efc24747
|
data/README.md
CHANGED
|
@@ -14,18 +14,15 @@ to read the touchpad device:
|
|
|
14
14
|
|
|
15
15
|
$ sudo gpasswd -a $USER input # Log out and back in to assign this group
|
|
16
16
|
|
|
17
|
-
You need libinput release 1.0 or later. Install
|
|
17
|
+
You need libinput release 1.0 or later. Install libinput-tools:
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
$ sudo apt-get install libinput-tools
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
If you are using apt (for ubuntu/debian based distributions).
|
|
21
|
+
For sending shortcuts:
|
|
24
22
|
|
|
25
23
|
$ sudo apt-get install xdotool
|
|
26
24
|
|
|
27
|
-
|
|
28
|
-
Install Fusuma
|
|
25
|
+
Install Fusuma:
|
|
29
26
|
|
|
30
27
|
$ gem install fusuma
|
|
31
28
|
|
data/lib/fusuma.rb
CHANGED
|
@@ -80,7 +80,7 @@ module Fusuma
|
|
|
80
80
|
def config_file
|
|
81
81
|
filename = 'fusuma/config.yml'
|
|
82
82
|
original_path = File.expand_path "~/.config/#{filename}"
|
|
83
|
-
default_path = File.expand_path "../#{filename}"
|
|
83
|
+
default_path = File.expand_path "../#{filename}", __FILE__
|
|
84
84
|
File.exist?(original_path) ? original_path : default_path
|
|
85
85
|
end
|
|
86
86
|
end
|
data/lib/fusuma/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fusuma
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- iberianpig
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-11-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|