• 0 Posts
  • 6 Comments
Joined 2 years ago
cake
Cake day: June 18th, 2023

help-circle



  • I know you’re looking for a desktop solution, but here’s something that you can try in case you can’t find one – I’m betting that having a solution is better than having none!

    So I just had a quick muck around:

    • You can use pgrep to detect if a process with a given name is running
    • You can write to /dev/pts/0 to trigger a desktop notification
    • You can drop it into a cron job to run it automatically on a schedule

    As a test, the following command will look for a process called syncthing and send a desktop notification if it can’t find it:

    pgrep syncthing || echo "Syncthing is not running > /dev/pts/0"
    

    To set up a cron job:

    1. open a terminal
    2. open the editor with crontab -e (if you need to pick an editor, nano will probably be your best bet, it’s easiest to use)
    3. in the editor, add the following line to the end of the file: 0 * * * * pgrep syncthing || echo "Syncthing is not running" > /dev/pts/0
      • The 0 * * * * sets up the schedule (on the 0th minute of every hour, every day of the month, every month, on every day of the week)
      • Everything after that is the command to run
    4. save and quit

    If you ever want to get rid of it, just open the cron file again (crontab -e) and remove the line.

    I gave this a go on KDE under Wayland and it seems to do the trick. Good luck, I hope you find what you’re looking for!

    [edit-1] added step (2) to install libnotify-bin in case you don’t have it already. [edit-2] added XDG_RUNTIME_DIR to step (4) [edit-3] removed references to libnotify, replace with /dev/pts/0 (Nice one, @sun_is_ra@sh.itjust.works !)



  • Not sure if you’re familiar or not with the Ig Nobel Prize (the “ig”is important - it’s not the same as the Nobel Prize), but it’s a kind of parody-but-not of the Nobel prize. It typically covers off-beat or weird science, to “honor achievements that first make people laugh, and then make them think.”

    It’s about as quirky as the science it covers:

    Miss Sweetie Poo, a little girl who repeatedly cries out, “Please stop: I’m bored”, in a high-pitched voice if speakers go on too long

    Throwing paper planes onto the stage is a long-standing tradition. For many years Professor Roy J. Glauber swept the stage clean of the airplanes as the official “Keeper of the Broom”. Glauber could not attend the 2005 awards because he was traveling to Stockholm to claim a genuine Nobel Prize in Physics.

    Calling each subsequent event the “first” is definitely on brand!