# # AUTHOR: # KesieV # # WHAT IT DOES: # Hide the main window when started. Click on the tray icon to # restore the window. It also pops up a greeting for helping the user # to find the right tray icon. You can disable this greeting adding: # # :hidegreeting: true # # into the config file. # # Setting the default value on load show this option into the settings plugin. if $opt[:hidegreeting]==nil then $opt[:hidegreeting]=false end $window.visible=false Thread.new { sleep 2 Notify::Notification.new($window.title,"I'm here! Click me for pop out the main window!",nil,$tray).show } if $notifies && !$opt[:hidegreeting]