Sha256: 13fa1e9ee0eb8772e4d56e83f4173c64d5dcda7e02fa581463562b3693442178
Contents?: true
Size: 1.35 KB
Versions: 3
Compression:
Stored size: 1.35 KB
Contents
# frozen_string_literal: true require_relative '../sendkey/keyboard.rb' module Fusuma module Plugin module Executors # Control Window or Workspaces by executing wctrl class SendkeyExecutor < Executor def config_param_types { 'device_name': String } end # execute sendkey command # @param event [Event] # @return [nil] def execute(event) MultiLogger.info(sendkey: search_param(event)) pid = fork do Process.daemon(true) keyboard.type(param: search_param(event)) end Process.detach(pid) end # check executable # @param event [Event] # @return [TrueClass, FalseClass] def executable?(event) event.tag.end_with?('_detector') && event.record.type == :index && keyboard.valid?(param: search_param(event)) end private def keyboard @keyboard ||= begin name_pattren = config_params(:device_name) Sendkey::Keyboard.new(name_pattern: name_pattren) end end def search_param(event) index = Config::Index.new([*event.record.index.keys, :sendkey]) Config.search(index) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems