Last active
November 7, 2021 18:01
-
-
Save ihashacks/4576452 to your computer and use it in GitHub Desktop.
pseudo undistract-me implementation in zsh Original undistract-me: http://mumak.net/undistract-me/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# commands to ignore | |
cmdignore=(htop tmux top vim) | |
# end and compare timer, notify-send if needed | |
function notifyosd-precmd() { | |
retval=$? | |
if [[ ${cmdignore[(r)$cmd_basename]} == $cmd_basename ]]; then | |
return | |
else | |
if [ ! -z "$cmd" ]; then | |
cmd_end=`date +%s` | |
((cmd_time=$cmd_end - $cmd_start)) | |
fi | |
if [ $retval -gt 0 ]; then | |
cmdstat="with warning" | |
sndstat="/usr/share/sounds/gnome/default/alerts/sonar.ogg" | |
else | |
cmdstat="successfully" | |
sndstat="/usr/share/sounds/gnome/default/alerts/glass.ogg" | |
fi | |
if [ ! -z "$cmd" -a $cmd_time -gt 10 ]; then | |
if [ ! -z $SSH_TTY ] ; then | |
notify-send -i utilities-terminal -u low "$cmd_basename on `hostname` completed $cmdstat" "\"$cmd\" took $cmd_time seconds"; play -q $sndstat | |
else | |
notify-send -i utilities-terminal -u low "$cmd_basename completed $cmdstat" "\"$cmd\" took $cmd_time seconds"; play -q $sndstat | |
fi | |
fi | |
unset cmd | |
fi | |
} | |
# make sure this plays nicely with any existing precmd | |
precmd_functions+=( notifyosd-precmd ) | |
# get command name and start the timer | |
function notifyosd-preexec() { | |
cmd=$1 | |
cmd_basename=${${cmd:s/sudo //}[(ws: :)1]} | |
cmd_start=`date +%s` | |
} | |
# make sure this plays nicely with any existing preexec | |
preexec_functions+=( notifyosd-preexec ) |
pataluc: Thank you for pointing that out! The "unset cmd" should actually be on line 10 though. I have fixed it.
Now if you run this thing in an "ssh -X" session you'll have the hostname included in the notification!
Command completion status now in notification title!
I forgot to mention that if you have sox installed then this will play a sound for
This thing has moved: https://github.com/ihashacks/notifyosd.zsh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
kdialog --title "$cmd_basename completed" --passivepopup ""$cmd" took $cmd_time seconds"
to use at KDE without notify-tools installed.
PS Thanks a lot!