Create a gist now

Instantly share code, notes, and snippets.

@thedod /README.md
Last active Aug 29, 2015

[Jitsi ugly tweak] Delete call log (and chat history while we're at it)
#!/bin/sh
if pgrep -f jitsi >/dev/null ; then
zenity --info --text "Please quit jitsi first.\n<b>Note:</b> Closing the window isn't enough.\nChoose file/quit from the menu."
else
rm -rf $HOME/.jitsi/history_ver1.0/*
zenity --info --text "History cleared.\nYou can restart jitsi now."
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment