module Thirdeye

Constants

VERSION

Public Class Methods

dmenu(list = nil) click to toggle source
# File lib/thirdeye.rb, line 14
def self.dmenu(list = nil)
  `echo -e "#{list.join("\n")}" | dmenu -i`.strip
end
run(cmd) click to toggle source
# File lib/thirdeye.rb, line 10
def self.run(cmd)
  I3::IPC.new.command(cmd)
end