X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=bin%2Fembrace;h=66915743cf3aa4a654f03a07c82896cbe4097735;hb=82f2544b1ba0d064c5e9b77795c0a34efe37a37e;hp=f9d00c047afd82af3d6c8d2d9b0a498c01fc61e1;hpb=76d5e549fcb9c0b316f81eb4a2a496d84f0313c7;p=embrace.git diff --git a/bin/embrace b/bin/embrace index f9d00c0..6691574 100755 --- a/bin/embrace +++ b/bin/embrace @@ -159,18 +159,6 @@ module Embrace @img = @label = @alpha_anim = nil end - def on_layer_set(layer) - @objects.each { |o| o.layer = layer } - end - - def on_stack_above(other) - @objects.each { |o| o.stack_above = other } - end - - def on_stack_below(other) - @objects.each { |o| o.stack_below = other } - end - def on_move(x, y) @objects.each { |o| o.move(x, y) } @@ -303,18 +291,6 @@ module Embrace @bg = nil end - def on_layer_set(layer) - @bg.layer = layer - end - - def on_stack_above(other) - @bg.stack_above = other - end - - def on_stack_below(other) - @bg.stack_below = other - end - def on_move(x, y) @bg.move(x, y) end @@ -341,7 +317,7 @@ module Embrace def initialize super - self.title = "blah" + self.title = "Embrace" self.borderless = true @icon_dim = IO.read(ICON_FILE, 8, 16).unpack("NN") @@ -367,6 +343,9 @@ module Embrace &method(:on_finished)) ] + s = File.expand_path("~/.e/apps/embrace/config.yaml") + @config = YAML.load(File.read(s)) + @server = nil @timer = Ecore::Timer.new(30, &method(:on_timer)) on_timer @@ -388,31 +367,7 @@ module Embrace def on_timer return unless @server.nil? - mboxes = %w{ - INBOX - Lists.ba-2005 - Lists.blackbox-devel - Lists.clc-devel - Lists.crux - Lists.cruxcon - Lists.dri-devel - Lists.dri-users - Lists.enlightenment-cvs - Lists.enlightenment-devel - Lists.hobix - Lists.mesa3d-dev - Lists.ruby-core - Lists.rubygems-devel - Lists.vim-ruby-devel - Lists.xmms2-devel - Lists.xorg - } - - s = File.expand_path("~/.e/apps/embrace/config.yaml") - - File.open(s) do |f| - @server = IMAP::Session.new(YAML.load(f), mboxes) - end + @server = IMAP::Session.new(@config) true end