X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=zsh%2Frc;h=91d1f5de8df17c7b700b20316bd83393801a0299;hb=fdbda4373a045a26e7025d90a2ae1a9fab4d12dd;hp=7f05bbf4b4a5eb4958f41f8b6457f6279f616423;hpb=d368523f5e96c59b09ddee620b480f3526028df1;p=config%2Fdotfiles.git diff --git a/zsh/rc b/zsh/rc index 7f05bbf..91d1f5d 100644 --- a/zsh/rc +++ b/zsh/rc @@ -851,6 +851,8 @@ fi # Multiplexer to use. By default GNU screen is used. Possible values: screen, # tmux and empty (no multiplexer). zshrc_use_multiplexer=screen +# Additional arguments for fortune. +zshrc_fortune_arguments=() source_config ~/.zsh/rc.local @@ -931,7 +933,7 @@ fi PERIOD=14400 periodic() { # Display fortunes. - (( $+commands[fortune] )) && fortune -ac + (( $+commands[fortune] )) && fortune -ac "${zshrc_fortune_arguments[@]}" # Display reminders. (( $+commands[rem] )) && [[ -f ~/.reminders ]] && rem -h }