Skip to content

Instantly share code, notes, and snippets.

@thedod
Last active August 29, 2015 14:05
Show Gist options
  • Save thedod/5f5623acebbe5097bee5 to your computer and use it in GitHub Desktop.
Save thedod/5f5623acebbe5097bee5 to your computer and use it in GitHub Desktop.
[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