6d30f6d579
Specifically the following plugins: fusuma-plugin-appmatcher fusuma-plugin-keypress fusuma-plugin-sendkey fusuma-plugin-tap fusuma-plugin-wmctrl I've not enabled the other plugins available on rubygems for the following reasons: * remap : seems niche functionality and requires further configuration to grant the user access permissions to event devices * thumbsense : pulls in remap (see above) * touchscreen : I've no way of testing. Note: enabling didn't appear to cause any problems. Ideally the plugin functionality would be made available as separate pkgs, but that would require patching Fusuma to search outside of the Gem directory. Enabling this subset of packages for what appears to be widely useful functionality seems a good option.
17 lines
620 B
Ruby
17 lines
620 B
Ruby
source 'https://rubygems.org'
|
|
gem "fusuma"
|
|
gem "fusuma-plugin-appmatcher"
|
|
gem "fusuma-plugin-keypress"
|
|
gem "fusuma-plugin-sendkey"
|
|
gem "fusuma-plugin-tap"
|
|
gem "fusuma-plugin-wmctrl"
|
|
|
|
# I've not activated the following plugins for the reasons given below.
|
|
|
|
# touchscreen needs specific h/w support I don't have access to, so I can't confirm
|
|
# if it's problem free. A quick check didn't reveal any problems.
|
|
#gem "fusuma-plugin-touchscreen"
|
|
|
|
# thumbsense pulls in remap, and at best remap requires further configuration to allow the use access to event devices.
|
|
#gem "fusuma-plugin-thumbsense"
|
|
#gem "fusuma-plugin-remap"
|