my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.7 KiB

3 years ago
  1. # bgnotify zsh plugin
  2. cross-platform background notifications for long running commands! Supports OSX and Ubuntu linux.
  3. Standalone homepage: [t413/zsh-background-notify](https://github.com/t413/zsh-background-notify)
  4. ----------------------------------
  5. ## How to use!
  6. Just add bgnotify to your plugins list in your `.zshrc`
  7. - On OS X you'll need [terminal-notifier](https://github.com/alloy/terminal-notifier)
  8. * `brew install terminal-notifier` (or `gem install terminal-notifier`)
  9. - On ubuntu you're already all set!
  10. - On windows you can use [notifu](https://www.paralint.com/projects/notifu/) or the Cygwin Ports libnotify package
  11. ## Screenshots
  12. **Linux**
  13. ![screenshot from 2014-11-07 15 58 36](https://cloud.githubusercontent.com/assets/326829/4962187/256b465c-66da-11e4-927d-cc2fc105e31f.png)
  14. **OS X**
  15. ![screenshot 2014-11-08 14 15 12](https://cloud.githubusercontent.com/assets/326829/4965780/19fa3eac-6795-11e4-8ed6-0355711123a9.png)
  16. **Windows**
  17. ![screenshot from 2014-11-07 15 55 00](https://cloud.githubusercontent.com/assets/326829/4962159/a2625ca0-66d9-11e4-9e91-c5834913190e.png)
  18. ## Configuration
  19. One can configure a few things:
  20. - `bgnotify_threshold` sets the notification threshold time (default 6 seconds)
  21. - `function bgnotify_formatted` lets you change the notification
  22. Use these by adding a function definition before the your call to source. Example:
  23. ~~~ sh
  24. bgnotify_threshold=4 ## set your own notification threshold
  25. function bgnotify_formatted {
  26. ## $1=exit_status, $2=command, $3=elapsed_time
  27. [ $1 -eq 0 ] && title="Holy Smokes Batman!" || title="Holy Graf Zeppelin!"
  28. bgnotify "$title -- after $3 s" "$2";
  29. }
  30. plugins=(git bgnotify) ## add to plugins list
  31. source $ZSH/oh-my-zsh.sh ## existing source call
  32. ~~~