Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9231227
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T06:01:08+00:00 2026-06-18T06:01:08+00:00

i want create simple application for notification in ubuntu… For example: in 18:00, 21:00,

  • 0

i want create simple application for notification in ubuntu…
For example: in 18:00, 21:00, 24:00 i want to receive message from ubuntu

simple method for message is:

def alarm
  %x{notify-send -i rhythmbox Test "Hello world" }
end

alarm

and when i sart this file ( like: ruby somefilename.rb )

i got notification message.

Question: how to cause this file run in 18:00, 21:00, 24:00

PS I know that there are many similar programs (for the experience like to know how to do that)

U.D. Using crontab:

* * * * * %x{notify-send -i rhythmbox Test "Hello world" }

Every minutes should start this script – but nothing happend

in some examples i saw that instead of script we put path to them: something like this:

* * * * * ruby /home/Home/myDisk/somefile.rb

how open with ruby this file or launch notify-send script in terminal without ruby ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T06:01:09+00:00Added an answer on June 18, 2026 at 6:01 am

    Good tools are cron and anacron.

    To do it in Ruby, one way is to use the Ruby sleep method:

    seconds = 18 * 60  # 18 minutes * 60 seconds/minute
    sleep(seconds)
    alarm
    

    To use your “wake up” times in a loop:

    start = Time.now
    for wake in [18, 21, 24]
      seconds = wake * 60 + start - Time.now
      sleep(seconds)
      alarm
    end
    

    Also see Ruby Thread to do alarms in parallel:

    for wake in [18, 21, 24]
      threads << Thread.new(wake) {|wake|
        sleep(wake * 60)
        alarm    
      }
    end
    threads.each {|t| t.join }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create one simple application for sending request from iphone(client) by using
I learning Perl and I want to create a simple application that gets all
I want to create a simple server application which runs on the desktop, and
I want to create a simple j2me application for a start which links with
I want to create a simple desktop admin application for an IOS app that
I'm trying to create a simple application that resides in the Notification area or
I want to create simple screenshot application for Win RT. I want to add
I want to create a simple application using Jena and SPARQL, that inserts, deletes,
I want to create a simple application for Nokia 5230 (s60 v5). Application will
I am new to .NET, and I want to create a simple application in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.