Skip to content

Instantly share code, notes, and snippets.

@dewomser
Last active September 7, 2025 04:39
Show Gist options
  • Select an option

  • Save dewomser/b6637c344b38b6fc50bab887b9f0c1eb to your computer and use it in GitHub Desktop.

Select an option

Save dewomser/b6637c344b38b6fc50bab887b9f0c1eb to your computer and use it in GitHub Desktop.
BOFH in a dialog box . A bashcript

Kann man sich auch in ~/.bashrc einbauen. Dann wird man beim Öffnen des Terminals damit begrüßt.

Abhängigkeiten:

  • fortune
  • bofh-excuses
  • dialog ( oder boxes )

text="$(fortune bofh-excuses)"&& dialog --title "Your ticket has been rejected" --colors --msgbox "${text}" 0 0

oder einfacher

dialog --title "Your ticket has been rejected" --colors --msgbox "$(fortune bofh-excuses)" 0 0

oder einfach mit boxes

echo -e "$(fortune bofh-excuses)" | boxes -d peek

` Bild

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment