選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

13 行
380 B

  1. #!/bin/bash
  2. muttdir="$HOME/.config/mutt/"
  3. wipe () { rm $HOME/.offlineimaprc
  4. rm -rf "$muttdir"/accounts
  5. rm -f "$muttdir"credentials/*gpg
  6. rm "$muttdir"personal.muttrc ;}
  7. (dialog --defaultno --title "Wipe all custom neomutt/offlineIMAP settings?" --yesno "Would you like to wipe all of the mutt/offlineIMAP settings generated by the system?" 6 60 && wipe) || clear && exit
  8. clear